diff options
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20191014164349_add_unboostable_to_accounts.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20191014164349_add_unboostable_to_accounts.rb b/db/migrate/20191014164349_add_unboostable_to_accounts.rb new file mode 100644 index 000000000..16d91d5a3 --- /dev/null +++ b/db/migrate/20191014164349_add_unboostable_to_accounts.rb @@ -0,0 +1,7 @@ +class AddUnboostableToAccounts < ActiveRecord::Migration[5.2] + def change + safety_assured { + add_column :accounts, :unboostable, :boolean, null: false, default: false + } + end +end |