Files
fizzy/db/migrate/20250924123001_create_card_not_nows.rb
T
2025-09-24 14:37:14 +02:00

9 lines
226 B
Ruby

class CreateCardNotNows < ActiveRecord::Migration[8.1]
def change
create_table :card_not_nows do |t|
t.references :card, null: false, foreign_key: true, index: { unique: true }
t.timestamps
end
end
end