Retrospring/db/migrate/20230108114333_add_allow_lo...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
197 B
Ruby
Raw Normal View History

2023-01-08 04:03:06 -08:00
# frozen_string_literal: true
class AddAllowLongQuestionsToProfiles < ActiveRecord::Migration[6.1]
def change
add_column :profiles, :allow_long_questions, :boolean, default: false
end
end