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