Add migration to create a new field on BlogPosts for custom teasers.

This commit is contained in:
Kyle Wilkinson 2011-06-21 02:09:16 -07:00
parent bce2877b2a
commit 70e8d3c49c

View file

@ -0,0 +1,10 @@
class AddCustomTeaserFieldToBlogPosts < ActiveRecord::Migration
def self.up
add_column :blog_posts, :custom_teaser, :text
end
def self.down
remove_column :blog_posts, :custom_teaser
end
end