blob: cd6fd27570fd2673d3d1e55a5bb2fc4034518f76 (
plain) (
blame)
1
2
3
4
5
6
7
|
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
|