Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

062_insert_builtin_roles.rb 431B

12345678910111213141516
  1. class InsertBuiltinRoles < ActiveRecord::Migration
  2. def self.up
  3. Role.reset_column_information
  4. nonmember = Role.new(:name => 'Non member', :position => 0)
  5. nonmember.builtin = Role::BUILTIN_NON_MEMBER
  6. nonmember.save
  7. anonymous = Role.new(:name => 'Anonymous', :position => 0)
  8. anonymous.builtin = Role::BUILTIN_ANONYMOUS
  9. anonymous.save
  10. end
  11. def self.down
  12. Role.destroy_all 'builtin <> 0'
  13. end
  14. end