Files
baclight/db/migrate/20251202152220_create_id_card_rx_sections.rb
T

13 lines
261 B
Ruby
Raw 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
t.timestamps
end
end
end