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

15 lines
331 B
Ruby

class CreatePShipBills < ActiveRecord::Migration[6.0]
def change
create_table :p_ship_bills do |t|
t.date :count_date
t.date :bill_at
t.string :ref
t.references :p_fournisseur
t.text :comment
t.decimal :a_ok_total, precision: 14, scale: 4
t.timestamps null: false
end
end
end