Files

10 lines
192 B
Ruby
Raw Permalink Normal View History

2025-11-24 08:22:44 -05:00
class CreateIdCardBenefitsTemplates < ActiveRecord::Migration[7.2]
def change
create_table :id_card_benefits_templates do |t|
t.string :title
t.timestamps
end
end
end