sideplace_app/db/migrate/20150628220539_create_annonce_utils.rb

19 lines
326 B
Ruby

class CreateAnnonceUtils < ActiveRecord::Migration
def change
create_table :annonce_utils do |t|
t.string :util_type
t.string :marque
t.integer :kms
t.string :energie
t.date :year
t.integer :cv
t.string :bv
t.timestamps null: false
end
end
end