Halfway through table redesign, saving to revert to working version

This commit is contained in:
Jason Jordan
2026-03-05 11:30:24 -05:00
parent ea07afb751
commit b5a1517330
86 changed files with 1286 additions and 884 deletions
@@ -0,0 +1,12 @@
class CreateIdCardPlanBenefits < ActiveRecord::Migration[7.2]
def change
create_table :id_card_plan_benefits do |t|
t.string :benefit_desc
t.string :benefit
t.integer :sequence
t.belongs_to :id_card_plan, null: false, foreign_key: true
t.timestamps
end
end
end