2007-03-10 15:09:49 +00:00
|
|
|
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
|
2011-11-06 07:54:24 +00:00
|
|
|
end
|
2007-03-10 15:09:49 +00:00
|
|
|
add_index :wikis, :project_id, :name => :wikis_project_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
drop_table :wikis
|
|
|
|
end
|
|
|
|
end
|