Chris@0: class AddCommentsPermissions < ActiveRecord::Migration Chris@0: # model removed Chris@0: class Permission < ActiveRecord::Base; end Chris@0: Chris@0: def self.up Chris@0: Permission.create :controller => "news", :action => "add_comment", :description => "label_comment_add", :sort => 1130, :is_public => false, :mail_option => 0, :mail_enabled => 0 Chris@0: Permission.create :controller => "news", :action => "destroy_comment", :description => "label_comment_delete", :sort => 1133, :is_public => false, :mail_option => 0, :mail_enabled => 0 Chris@0: end Chris@0: Chris@0: 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@0: end Chris@0: end