This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-03-24 04:51:28 -07:00
|
|
|
class ChangeColumnsInNotificationsNonnullable < ActiveRecord::Migration[5.1]
|
|
|
|
def change
|
2019-12-28 20:39:08 -08:00
|
|
|
safety_assured do
|
|
|
|
change_column_null :notifications, :activity_id, false
|
|
|
|
change_column_null :notifications, :activity_type, false
|
|
|
|
change_column_null :notifications, :account_id, false
|
|
|
|
change_column_null :notifications, :from_account_id, false
|
|
|
|
end
|
2018-03-24 04:51:28 -07:00
|
|
|
end
|
|
|
|
end
|