11 lines
238 B
Ruby
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
|