Location Component

This commit is contained in:
Gopesh Tulsyan 2014-06-02 20:48:56 +05:30
parent 069cc0eb4c
commit b1c171cd97
12 changed files with 119 additions and 19 deletions

View file

@ -50,15 +50,15 @@ ActiveRecord::Schema.define(version: 20140605125153) do
add_index "comments", ["user_id"], name: "index_comments_on_user_id"
create_table "conferences", force: true do |t|
t.string "guid", null: false
t.string "title", null: false
t.string "short_title", null: false
t.string "guid", null: false
t.string "title", null: false
t.string "short_title", null: false
t.string "social_tag"
t.string "contact_email", null: false
t.string "timezone", null: false
t.string "contact_email", null: false
t.string "timezone", null: false
t.string "html_export_path"
t.date "start_date", null: false
t.date "end_date", null: false
t.date "start_date", null: false
t.date "end_date", null: false
t.integer "venue_id"
t.datetime "created_at"
t.datetime "updated_at"
@ -81,6 +81,9 @@ ActiveRecord::Schema.define(version: 20140605125153) do
t.text "description"
t.text "registration_description"
t.text "ticket_description"
t.string "facebook_url"
t.string "google_url"
t.string "twitter_url"
end
create_table "conferences_questions", id: false, force: true do |t|
@ -308,9 +311,9 @@ ActiveRecord::Schema.define(version: 20140605125153) do
end
create_table "tracks", force: true do |t|
t.string "guid", null: false
t.string "guid", null: false
t.integer "conference_id"
t.string "name", null: false
t.string "name", null: false
t.text "description"
t.string "color"
t.datetime "created_at"
@ -363,6 +366,10 @@ ActiveRecord::Schema.define(version: 20140605125153) do
t.string "offline_map_bounds"
t.datetime "created_at"
t.datetime "updated_at"
t.string "photo_file_name"
t.string "photo_content_type"
t.integer "photo_file_size"
t.datetime "photo_updated_at"
end
create_table "versions", force: true do |t|