blob: 0489ba4521175c4a4523c9f73ee5e950b16d3b74 (
plain) (
tree)
|
|
# 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
|