Files
fizzy/db/migrate/20250424045639_make_notifications_source_id_not_nullable.rb
T
2025-04-24 12:28:16 +02:00

6 lines
154 B
Ruby

class MakeNotificationsSourceIdNotNullable < ActiveRecord::Migration[8.1]
def change
change_column_null :notifications, :source_id, false
end
end