Chris@1464: class AddCommentsPermissions < ActiveRecord::Migration Chris@1464: # model removed Chris@1464: class Permission < ActiveRecord::Base; end Chris@1464: Chris@1464: def self.up Chris@1464: Permission.create :controller => "news", :action => "add_comment", :description => "label_comment_add", :sort => 1130, :is_public => false, :mail_option => 0, :mail_enabled => 0 Chris@1464: Permission.create :controller => "news", :action => "destroy_comment", :description => "label_comment_delete", :sort => 1133, :is_public => false, :mail_option => 0, :mail_enabled => 0 Chris@1464: end Chris@1464: Chris@1464: def self.down Chris@1464: Permission.where("controller=? and action=?", 'news', 'add_comment').first.destroy Chris@1464: Permission.where("controller=? and action=?", 'news', 'destroy_comment').first.destroy Chris@1464: end Chris@1464: end