sideplace_app/db/migrate/20150629151038_create_annonce_tels.rb

10 lines
174 B
Ruby

class CreateAnnonceTels < ActiveRecord::Migration
def change
create_table :annonce_tels do |t|
t.string :marque
t.timestamps null: false
end
end
end