mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-06 23:14:57 +00:00
13 lines
410 B
Ruby
13 lines
410 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ChangeColumnsInNotificationsNonnullable < ActiveRecord::Migration[5.2]
|
|
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
|