8 lines
197 B
Ruby
8 lines
197 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddAllowLongQuestionsToProfiles < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
add_column :profiles, :allow_long_questions, :boolean, default: false
|
||
|
end
|
||
|
end
|