Add social url to conference
This commit is contained in:
parent
4e7dd5a8a7
commit
6d2576421b
4 changed files with 22 additions and 2 deletions
|
|
@ -0,0 +1,7 @@
|
|||
class AddSocialUrlsToConference < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :conferences, :twitter_url, :string
|
||||
add_column :conferences, :facebook_url, :string
|
||||
add_column :conferences, :google_url, :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: 20140605125153) do
|
||||
ActiveRecord::Schema.define(version: 20140612181230) do
|
||||
|
||||
create_table "answers", force: true do |t|
|
||||
t.string "title"
|
||||
|
|
@ -81,6 +81,9 @@ ActiveRecord::Schema.define(version: 20140605125153) do
|
|||
t.text "description"
|
||||
t.text "registration_description"
|
||||
t.text "ticket_description"
|
||||
t.string "twitter_url"
|
||||
t.string "facebook_url"
|
||||
t.string "google_url"
|
||||
end
|
||||
|
||||
create_table "conferences_questions", id: false, force: true do |t|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue