7 lines
181 B
Ruby
7 lines
181 B
Ruby
|
class AddQuestionColumnsToAvis < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
add_column :avis, :question_label, :string
|
||
|
add_column :avis, :question_answer, :boolean
|
||
|
end
|
||
|
end
|