Fix old migrations failing because of strong_migrations update (#12787)

Fixes #12768

Some migrations were overlooked in #12692
This commit is contained in:
ThibG 2020-01-10 21:52:24 +01:00 committed by Yamagishi Kazutoshi
parent e326b0dda1
commit 7583679ecf
2 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,8 @@
class ChangeUserIdNonnullable < ActiveRecord::Migration[5.1]
def change
change_column_null :invites, :user_id, false
change_column_null :web_settings, :user_id, false
safety_assured do
change_column_null :invites, :user_id, false
change_column_null :web_settings, :user_id, false
end
end
end

View File

@ -1,5 +1,7 @@
class ChangeListAccountFollowNullable < ActiveRecord::Migration[5.1]
def change
change_column_null :list_accounts, :follow_id, true
safety_assured do
change_column_null :list_accounts, :follow_id, true
end
end
end