kaps_app/db/migrate/20180616094847_create_p_customer_sheets.rb
Nicolas Bally d60301e8a7 initial
2019-01-21 01:15:10 +01:00

12 lines
238 B
Ruby

class CreatePCustomerSheets < ActiveRecord::Migration
def change
create_table :p_customer_sheets do |t|
t.references :p_customer
t.string :state
t.string :comments
t.timestamps null: false
end
end
end