sideplace_app/db/migrate/20150629165621_create_annonce_infs.rb

11 lines
200 B
Ruby

class CreateAnnonceInfs < ActiveRecord::Migration
def change
create_table :annonce_infs do |t|
t.string :bien_type
t.string :marque
t.timestamps null: false
end
end
end