diff options
Diffstat (limited to 'db/migrate/20180615122121_add_autofollow_to_invites.rb')
-rw-r--r-- | db/migrate/20180615122121_add_autofollow_to_invites.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20180615122121_add_autofollow_to_invites.rb b/db/migrate/20180615122121_add_autofollow_to_invites.rb index 850b1d693..8c5fb7410 100644 --- a/db/migrate/20180615122121_add_autofollow_to_invites.rb +++ b/db/migrate/20180615122121_add_autofollow_to_invites.rb @@ -5,7 +5,7 @@ class AddAutofollowToInvites < ActiveRecord::Migration[5.2] disable_ddl_transaction! - def change + def up safety_assured do add_column_with_default :invites, :autofollow, :bool, default: false, allow_null: false end |