sideplace_app/db/migrate/20150629165538_create_annonce_highs.rb

11 lines
202 B
Ruby

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