aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20130611193509_add_source_url_to_blog_posts.refinery_blog.rb
blob: 0489ba4521175c4a4523c9f73ee5e950b16d3b74 (plain) (blame)
1
2
3
4
5
6
7
8
# This migration comes from refinery_blog (originally 20120103055909)
class AddSourceUrlToBlogPosts < ActiveRecord::Migration
  def change
    add_column Refinery::Blog::Post.table_name, :source_url, :string
    add_column Refinery::Blog::Post.table_name, :source_url_title, :string
    
  end
end