2006-11-12 21:50:30 +03:00
|
|
|
class CalendarAndActivity < ActiveRecord::Migration
|
2007-08-29 20:52:35 +04:00
|
|
|
# model removed
|
|
|
|
class Permission < ActiveRecord::Base; end
|
|
|
|
|
2006-11-12 21:50:30 +03:00
|
|
|
def self.up
|
|
|
|
Permission.create :controller => "projects", :action => "activity", :description => "label_activity", :sort => 160, :is_public => true, :mail_option => 0, :mail_enabled => 0
|
|
|
|
Permission.create :controller => "projects", :action => "calendar", :description => "label_calendar", :sort => 165, :is_public => true, :mail_option => 0, :mail_enabled => 0
|
|
|
|
Permission.create :controller => "projects", :action => "gantt", :description => "label_gantt", :sort => 166, :is_public => true, :mail_option => 0, :mail_enabled => 0
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
2012-12-03 22:25:57 +04:00
|
|
|
Permission.where("controller=? and action=?", 'projects', 'activity').first.destroy
|
|
|
|
Permission.where("controller=? and action=?", 'projects', 'calendar').first.destroy
|
|
|
|
Permission.where("controller=? and action=?", 'projects', 'gantt').first.destroy
|
2006-11-12 21:50:30 +03:00
|
|
|
end
|
|
|
|
end
|