mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 04:54:25 +00:00
9 lines
341 B
Ruby
9 lines
341 B
Ruby
|
class ChangeColumnsInNotificationsNonnullable < ActiveRecord::Migration[5.1]
|
||
|
def change
|
||
|
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
|