您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

014_add_queries_permissions.rb 438B

123456789101112
  1. class AddQueriesPermissions < ActiveRecord::Migration[4.2]
  2. # model removed
  3. class Permission < ActiveRecord::Base; end
  4. def self.up
  5. Permission.create :controller => "projects", :action => "add_query", :description => "button_create", :sort => 600, :is_public => false, :mail_option => 0, :mail_enabled => 0
  6. end
  7. def self.down
  8. Permission.where("controller=? and action=?", 'projects', 'add_query').first.destroy
  9. end
  10. end