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