13 lines
292 B
Ruby
13 lines
292 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.belongs_to :id_card_setup, null: true, foreign_key: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|