Class: CreatePosts
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreatePosts
- Defined in:
- lib/generators/templates/db/migrate/20110110042721_create_posts.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
18 19 20 |
# File 'lib/generators/templates/db/migrate/20110110042721_create_posts.rb', line 18 def self.down drop_table :posts end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/generators/templates/db/migrate/20110110042721_create_posts.rb', line 2 def self.up create_table :posts do |t| t.string :title t.string :permalink t.text :summary t.text :body t.text :tags t.boolean :publish t.datetime :published_on t.string :meta_keywords t.string :meta_description t. end end |