osem-fcy/db/migrate/20181113195810_add_youtube_and_blog_to_contacts.rb
James Mason a3adf8318d Add additional social media fields to contacts
+ YouTube
+ Blog

Simplify logic in the view, and refactor the test #BetterPlace
2018-11-14 15:01:03 +01:00

6 lines
173 B
Ruby

class AddYoutubeAndBlogToContacts < ActiveRecord::Migration[5.0]
def change
add_column :contacts, :youtube, :string
add_column :contacts, :blog, :string
end
end