This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/db/migrate/20210907161735_create_price_line_resp_selects.rb

11 lines
238 B
Ruby

class CreatePriceLineRespSelects < ActiveRecord::Migration[6.0]
def change
create_table :price_line_resp_selects do |t|
t.integer :price_line_demand_id
t.integer :price_line_resp_id
t.timestamps
end
end
end