Class: CreatePagesTable
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreatePagesTable
- Defined in:
- lib/generators/pagificate/templates/migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
15 16 17 |
# File 'lib/generators/pagificate/templates/migration.rb', line 15 def self.down drop_table :pages end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 |
# File 'lib/generators/pagificate/templates/migration.rb', line 2 def self.up create_table :pages do |t| t.string :title, :null => false t.text :body t.boolean :use_site_layout, :default => true t.boolean :published, :default => false t.string :permalink t. end add_index :pages, :title end |