summaryrefslogtreecommitdiff
path: root/db/migrate/20090131113802_create_pages.rb
blob: 7493ffc9a5a4fd25d18ec9d200e76d3c0e838c2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class CreatePages < ActiveRecord::Migration
  def self.up
    create_table :pages do |t|
      t.integer :node_id
      t.string :title
      t.text :abstract
      t.text :body
      t.integer :revision

      t.timestamps
    end
  end

  def self.down
    drop_table :pages
  end
end