qi6_app/db/migrate/20180626085009_add_particulars_to_customer_sheets.rb
2019-05-17 12:30:45 +02:00

7 lines
221 B
Ruby

class AddParticularsToCustomerSheets < ActiveRecord::Migration[6.0]
def change
add_column :p_customer_sheets, :particular_bill_id, :integer
add_column :p_customer_sheets, :particular_send_id, :integer
end
end