Files
baclight/db/migrate/20260116181849_create_card_exceptions.rb
T
2026-03-03 22:53:21 -05:00

12 lines
254 B
Ruby

class CreateCardExceptions < ActiveRecord::Migration[7.2]
def change
create_table :card_exceptions do |t|
t.string :type
t.string :value
t.belongs_to :employer, null: false, foreign_key: true
t.timestamps
end
end
end