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

11 lines
243 B
Ruby

class CreatePCustomers < ActiveRecord::Migration[6.0]
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