Bike!Bike! Website!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
309 B

class CreateEventLocations < ActiveRecord::Migration
def change
create_table :event_locations do |t|
t.string :title
t.integer :conference_id
t.float :latitude
t.float :longitude
t.string :address
t.string :amenities
t.timestamps null: false
end
end
end