summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2010-08-22 18:42:00 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2010-08-22 18:42:00 +0000
commitfc9b984cc1473b36123e853d9c6f68a5549a7338 (patch)
tree9b57c5cd6fa86659ce03ad209a5d6cc41b62c229 /db
parent7e565eed34de60500ac5c0f71c89072cb3501304 (diff)
downloadredmine-fc9b984cc1473b36123e853d9c6f68a5549a7338.tar.gz
redmine-fc9b984cc1473b36123e853d9c6f68a5549a7338.zip
Treat Calendar and Gantt pages as separate modules. #6153
This will let the Issue Tracking, Gantt, and Calendar modules be enabled or disabled as needed. A database migration will enable the Gantt and Calendar for all existing projects that have Issue Tracking enabled. Contributed by Adam Soltys git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4013 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20100819172912_enable_calendar_and_gantt_modules_where_appropriate.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20100819172912_enable_calendar_and_gantt_modules_where_appropriate.rb b/db/migrate/20100819172912_enable_calendar_and_gantt_modules_where_appropriate.rb
new file mode 100644
index 000000000..416607b43
--- /dev/null
+++ b/db/migrate/20100819172912_enable_calendar_and_gantt_modules_where_appropriate.rb
@@ -0,0 +1,12 @@
+class EnableCalendarAndGanttModulesWhereAppropriate < ActiveRecord::Migration
+ def self.up
+ EnabledModule.find(:all, :conditions => ["name = ?", 'issue_tracking']).each do |e|
+ EnabledModule.create(:name => 'calendar', :project_id => e.project_id)
+ EnabledModule.create(:name => 'gantt', :project_id => e.project_id)
+ end
+ end
+
+ def self.down
+ EnabledModule.delete_all("name = 'calendar' OR name = 'gantt'")
+ end
+end