lfa-wordpress-import/spec/dummy/db/migrate/20110812162204_add_custom_teaser_field_to_blog_posts.rb
Marc Remolt b2700960d8 Updated to latest refinerycms(-blog)
* bundle update
* new migrations
* fixed specs for new behaviour
2011-08-12 18:44:00 +02:00

11 lines
208 B
Ruby

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