To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / db / migrate / 027_create_wikis.rb @ 912:5e80956cc792

History | View | Annotate | Download (399 Bytes)

1 0:513646585e45 Chris
class CreateWikis < ActiveRecord::Migration
2
  def self.up
3
    create_table :wikis do |t|
4
      t.column :project_id, :integer, :null => false
5
      t.column :start_page, :string,  :limit => 255, :null => false
6
      t.column :status, :integer, :default => 1, :null => false
7 909:cbb26bc654de Chris
    end
8 0:513646585e45 Chris
    add_index :wikis, :project_id, :name => :wikis_project_id
9
  end
10
11
  def self.down
12
    drop_table :wikis
13
  end
14
end