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.
15 lines
309 B
15 lines
309 B
9 years ago
|
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
|