Fix old migrations failing because of strong_migrations update (#12787)
Fixes #12768 Some migrations were overlooked in #12692pull/12815/head
parent
e326b0dda1
commit
7583679ecf
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue