Add migration to add custom_url field to BlogPost.

This commit is contained in:
Kyle Wilkinson 2011-06-16 22:18:36 -07:00
parent b3c06562a4
commit 07a1a81b95

View file

@ -0,0 +1,9 @@
class AddCustomUrlFieldToBlogPosts < ActiveRecord::Migration
def self.up
add_column :blog_posts, :custom_url, :string
end
def self.down
remove_column :blog_posts, :custom_url
end
end