Files
baclight/db/migrate/20251204142443_create_id_card_plans.rb
T
2026-03-13 08:47:13 -04:00

14 lines
351 B
Ruby

class CreateIdCardPlans < ActiveRecord::Migration[7.2]
def change
create_table :id_card_plans do |t|
t.string :title
t.integer :pb_product_key
t.string :pl_plan_key
t.boolean :template
t.belongs_to :configuration, null: true, foreign_key: { to_table: :id_card_configurations }
t.timestamps
end
end
end