You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

006_calendar_and_activity.rb 957B

12345678910111213141516
  1. class CalendarAndActivity < ActiveRecord::Migration[4.2]
  2. # model removed
  3. class Permission < ActiveRecord::Base; end
  4. def self.up
  5. Permission.create :controller => "projects", :action => "activity", :description => "label_activity", :sort => 160, :is_public => true, :mail_option => 0, :mail_enabled => 0
  6. Permission.create :controller => "projects", :action => "calendar", :description => "label_calendar", :sort => 165, :is_public => true, :mail_option => 0, :mail_enabled => 0
  7. Permission.create :controller => "projects", :action => "gantt", :description => "label_gantt", :sort => 166, :is_public => true, :mail_option => 0, :mail_enabled => 0
  8. end
  9. def self.down
  10. Permission.where("controller=? and action=?", 'projects', 'activity').first.destroy
  11. Permission.where("controller=? and action=?", 'projects', 'calendar').first.destroy
  12. Permission.where("controller=? and action=?", 'projects', 'gantt').first.destroy
  13. end
  14. end