diff options
Diffstat (limited to 'db/migrate/20200728171900_add_private_to_accounts.rb')
-rw-r--r-- | db/migrate/20200728171900_add_private_to_accounts.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20200728171900_add_private_to_accounts.rb b/db/migrate/20200728171900_add_private_to_accounts.rb new file mode 100644 index 000000000..482d09576 --- /dev/null +++ b/db/migrate/20200728171900_add_private_to_accounts.rb @@ -0,0 +1,7 @@ +class AddPrivateToAccounts < ActiveRecord::Migration[5.2] + def change + safety_assured do + add_column :accounts, :private, :boolean, default: false, null: false + end + end +end |