redmine/db/migrate/045_create_boards.rb
Jean-Philippe Lang b90e84b9fe Per project forums added.
Permissions for forums management can be set in "Admin -> Roles & Permissions".
Forums can be created on the project settings screen ("Forums" tab).
Once a project has a forum, a "Forums" link appears in the project menu.
For now, posting messages in forums requires to be logged in. Files can be attached to messages.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@529 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-05-13 17:09:56 +00:00

19 lines
623 B
Ruby

class CreateBoards < ActiveRecord::Migration
def self.up
create_table :boards do |t|
t.column :project_id, :integer, :null => false
t.column :name, :string, :default => "", :null => false
t.column :description, :string
t.column :position, :integer, :default => 1, :null => false
t.column :topics_count, :integer, :default => 0, :null => false
t.column :messages_count, :integer, :default => 0, :null => false
t.column :last_message_id, :integer
end
add_index :boards, [:project_id], :name => :boards_project_id
end
def self.down
drop_table :boards
end
end