Skip to content
Snippets Groups Projects
Commit 7583679e authored by ThibG's avatar ThibG Committed by Yamagishi Kazutoshi
Browse files

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

Fixes #12768

Some migrations were overlooked in #12692
parent e326b0dd
No related branches found
No related tags found
No related merge requests found
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
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment