Files

14 lines
302 B
Ruby
Raw Permalink Normal View History

class CreateIdCardRxSections < ActiveRecord::Migration[7.2]
def change
create_table :id_card_rx_sections do |t|
2026-03-13 08:47:13 -04:00
t.string :title
t.string :help_desk
t.string :customer_service
t.string :web_url
2026-05-06 13:28:16 -04:00
t.boolean :default, default: false
t.timestamps
end
end
end