f37089f547
git-svn-id: http://redmine.rubyforge.org/svn/trunk@7 e93f8b46-1217-0410-a6f0-8f06a7374b81
62 lines
2.9 KiB
Ruby
62 lines
2.9 KiB
Ruby
# redMine - project management software
|
|
# Copyright (C) 2006 Jean-Philippe Lang
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
class DefaultConfiguration < ActiveRecord::Migration
|
|
def self.up
|
|
# roles
|
|
r = Role.create(:name => "Manager")
|
|
r.permissions = Permission.find(:all)
|
|
r = Role.create :name => "Developer"
|
|
r.permissions = Permission.find(:all)
|
|
r = Role.create :name => "Reporter"
|
|
r.permissions = Permission.find(:all)
|
|
# trackers
|
|
Tracker.create(:name => "Bug", :is_in_chlog => true)
|
|
Tracker.create(:name => "Feature request", :is_in_chlog => true)
|
|
Tracker.create(:name => "Support request", :is_in_chlog => false)
|
|
# issue statuses
|
|
IssueStatus.create(:name => "New", :is_closed => false, :is_default => true, :html_color => 'F98787')
|
|
IssueStatus.create(:name => "Assigned", :is_closed => false, :is_default => false, :html_color => 'C0C0FF')
|
|
IssueStatus.create(:name => "Resolved", :is_closed => false, :is_default => false, :html_color => '88E0B3')
|
|
IssueStatus.create(:name => "Feedback", :is_closed => false, :is_default => false, :html_color => 'F3A4F4')
|
|
IssueStatus.create(:name => "Closed", :is_closed => true, :is_default => false, :html_color => 'DBDBDB')
|
|
IssueStatus.create(:name => "Rejected", :is_closed => true, :is_default => false, :html_color => 'F5C28B')
|
|
# workflow
|
|
Tracker.find(:all).each { |t|
|
|
Role.find(:all).each { |r|
|
|
IssueStatus.find(:all).each { |os|
|
|
IssueStatus.find(:all).each { |ns|
|
|
Workflow.create(:tracker_id => t.id, :role_id => r.id, :old_status_id => os.id, :new_status_id => ns.id) unless os == ns
|
|
}
|
|
}
|
|
}
|
|
}
|
|
# enumeartions
|
|
Enumeration.create(:opt => "DCAT", :name => 'Uncategorized')
|
|
Enumeration.create(:opt => "DCAT", :name => 'User documentation')
|
|
Enumeration.create(:opt => "DCAT", :name => 'Technical documentation')
|
|
Enumeration.create(:opt => "IPRI", :name => 'Low')
|
|
Enumeration.create(:opt => "IPRI", :name => 'Normal')
|
|
Enumeration.create(:opt => "IPRI", :name => 'High')
|
|
Enumeration.create(:opt => "IPRI", :name => 'Urgent')
|
|
Enumeration.create(:opt => "IPRI", :name => 'Immediate')
|
|
end
|
|
|
|
def self.down
|
|
end
|
|
end
|