mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 22:18:06 +01:00
8 lines
341 B
Ruby
8 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
|