2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-06 11:05:14 +01:00
|
|
|
class AddQuestionColumnsToAvis < ActiveRecord::Migration[6.1]
|
|
|
|
def change
|
|
|
|
add_column :avis, :question_label, :string
|
|
|
|
add_column :avis, :question_answer, :boolean
|
|
|
|
end
|
|
|
|
end
|