summaryrefslogtreecommitdiff
path: root/db/migrate/027_create_wikis.rb
blob: 284eee2e2541ff923eb17392d153d3595186664d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CreateWikis < ActiveRecord::Migration
  def self.up
    create_table :wikis do |t|
      t.column :project_id, :integer, :null => false
      t.column :start_page, :string,  :limit => 255, :null => false
      t.column :status, :integer, :default => 1, :null => false
    end
    add_index :wikis, :project_id, :name => :wikis_project_id
  end

  def self.down
    drop_table :wikis
  end
end