Files
fizzy/db/migrate/20250422062930_remove_unused_columns_from_notifications.rb
T
2025-04-22 11:26:56 +02:00

7 lines
184 B
Ruby

class RemoveUnusedColumnsFromNotifications < ActiveRecord::Migration[8.1]
def change
remove_column :notifications, :event_id
remove_column :notifications, :card_id
end
end