Adds lodging description to conference
This commit is contained in:
parent
2a742e6d0a
commit
feabc3b954
4 changed files with 10 additions and 2 deletions
|
|
@ -0,0 +1,5 @@
|
|||
class AddLodgingDescriptionToConference < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :conferences, :lodging_description, :text
|
||||
end
|
||||
end
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20140613083115) do
|
||||
ActiveRecord::Schema.define(version: 20140614171853) do
|
||||
|
||||
create_table "answers", force: true do |t|
|
||||
t.string "title"
|
||||
|
|
@ -86,6 +86,7 @@ ActiveRecord::Schema.define(version: 20140613083115) do
|
|||
t.string "google_url"
|
||||
t.text "sponsor_description"
|
||||
t.string "sponsor_email"
|
||||
t.text "lodging_description"
|
||||
end
|
||||
|
||||
create_table "conferences_questions", id: false, force: true do |t|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue