7 lines
184 B
Ruby
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
|