Files
fizzy/db/migrate/20260206104338_add_card_id_to_notifications.rb
2026-02-12 08:07:51 +01:00

7 lines
212 B
Ruby

class AddCardIdToNotifications < ActiveRecord::Migration[8.2]
def change
add_column :notifications, :card_id, :uuid
add_column :notifications, :unread_count, :integer, null: false, default: 0
end
end