forked from treehouse/mastodon
11 lines
379 B
Ruby
11 lines
379 B
Ruby
class ChangeColumnsInNotificationsNonnullable < ActiveRecord::Migration[5.1]
|
|
def change
|
|
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
|
|
end
|
|
end
|