2026-03-05 11:30:24 -05:00
|
|
|
class CreateIdCardRxSections < ActiveRecord::Migration[7.2]
|
2026-01-15 11:37:50 -05:00
|
|
|
def change
|
2026-03-05 11:30:24 -05:00
|
|
|
create_table :id_card_rx_sections do |t|
|
2026-03-13 08:47:13 -04:00
|
|
|
t.string :title
|
2026-01-15 11:37:50 -05:00
|
|
|
t.string :help_desk
|
|
|
|
|
t.string :customer_service
|
|
|
|
|
t.string :web_url
|
|
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|