sideplace_app/db/migrate/20150629165553_create_annonce_plays.rb

11 lines
202 B
Ruby

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