aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20110803223528_add_custom_teaser_field_to_blog_posts.rb
blob: 895acb5b3c2be359cc00b033df053d34c6f9e21f (plain) (blame)
1
2
3
4
5
6
class AddCustomTeaserFieldToBlogPosts < ActiveRecord::Migration
  def change
    add_column Refinery::Blog::Post.table_name, :custom_teaser, :text
  end
end