intra_app/db/migrate/20181110151820_create_i_hebergements.rb
Nicolas Bally 0bb1993bdd suite
2018-11-10 22:25:56 +01:00

18 lines
360 B
Ruby

class CreateIHebergements < ActiveRecord::Migration
def change
create_table :i_hebergements do |t|
t.string :name
t.date :start_at
t.date :last_bill_at
t.date :bill_to
t.decimal :price_ht
t.integer :frequence
t.date :end_at
t.references :p_customer
t.timestamps null: false
end
end
end