Class: CreatePosts
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreatePosts
- Defined in:
- lib/generators/templates/db/migrate/create_posts.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
15 16 17 |
# File 'lib/generators/templates/db/migrate/create_posts.rb', line 15 def self.down drop_table :posts end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 |
# File 'lib/generators/templates/db/migrate/create_posts.rb', line 2 def self.up create_table :posts do |t| t.string :title, :required => true t.string :path, :required => true t.string :teaser t.datetime :posted_at t.text :body t.string :author t.boolean :live, :default => true t. end end |