12 lines
221 B
Ruby
12 lines
221 B
Ruby
|
|
class CreateCardRxes < ActiveRecord::Migration[7.2]
|
||
|
|
def change
|
||
|
|
create_table :card_rxes do |t|
|
||
|
|
t.string :help_desk
|
||
|
|
t.string :customer_service
|
||
|
|
t.string :web_url
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|