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

11 lines
238 B
Ruby

class CreatePCustomers < ActiveRecord::Migration
def change
create_table :p_customers do |t|
t.decimal :encourt_max, precision: 12, scale: 4
t.references :p_customer_cat
t.timestamps null: false
end
end
end