2018-02-07 16:35:44 +01:00
|
|
|
class ChangeUserIdNonnullable < ActiveRecord::Migration[5.1]
|
|
|
|
def change
|
2020-01-10 21:52:24 +01:00
|
|
|
safety_assured do
|
|
|
|
change_column_null :invites, :user_id, false
|
|
|
|
change_column_null :web_settings, :user_id, false
|
|
|
|
end
|
2018-02-07 16:35:44 +01:00
|
|
|
end
|
|
|
|
end
|