Add migration to create a new field on BlogPosts for custom teasers.
This commit is contained in:
parent
bce2877b2a
commit
70e8d3c49c
1 changed files with 10 additions and 0 deletions
10
db/migrate/7_add_custom_teaser_field_to_blog_posts.rb
Normal file
10
db/migrate/7_add_custom_teaser_field_to_blog_posts.rb
Normal 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue