mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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
|