Class: CreatePages

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/templates/db/migrate/20081216193152_create_pages.rb

Class Method Summary collapse

Class Method Details

.downObject



12
13
14
# File 'lib/generators/templates/db/migrate/20081216193152_create_pages.rb', line 12

def self.down
  drop_table :pages
end

.upObject



2
3
4
5
6
7
8
9
10
# File 'lib/generators/templates/db/migrate/20081216193152_create_pages.rb', line 2

def self.up
  create_table :pages do |t|
    t.string :title
    t.text :body
    t.string :slug

    t.timestamps
  end
end