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