Adds website link to lodging
This commit is contained in:
parent
feabc3b954
commit
01bd45a045
7 changed files with 22 additions and 2 deletions
5
db/migrate/20140614174354_add_website_link_to_lodging.rb
Normal file
5
db/migrate/20140614174354_add_website_link_to_lodging.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
class AddWebsiteLinkToLodging < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :lodgings, :website_link, :string
|
||||
end
|
||||
end
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20140614171853) do
|
||||
ActiveRecord::Schema.define(version: 20140614174354) do
|
||||
|
||||
create_table "answers", force: true do |t|
|
||||
t.string "title"
|
||||
|
|
@ -203,6 +203,7 @@ ActiveRecord::Schema.define(version: 20140614171853) do
|
|||
t.integer "venue_id"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.string "website_link"
|
||||
end
|
||||
|
||||
create_table "people", force: true do |t|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue