sideplace_app/db/migrate/20150628214136_create_annonce_motos.rb

14 lines
266 B
Ruby

class CreateAnnonceMotos < ActiveRecord::Migration
def change
create_table :annonce_motos do |t|
t.string :m_type
t.string :marque
t.integer :cylindree
t.integer :kms
t.date :year
t.timestamps null: false
end
end
end