annotate .svn/pristine/a7/a7cc7a3537df3ded519cd03f022f755c7e4d5803.svn-base @ 1628:9c5f8e24dadc live tip

Quieten this cron script
author Chris Cannam
date Tue, 25 Aug 2020 11:38:49 +0100
parents 038ba2d95de8
children
rev   line source
Chris@1296 1 class InsertBuiltinRoles < ActiveRecord::Migration
Chris@1296 2 def self.up
Chris@1296 3 Role.reset_column_information
Chris@1296 4 nonmember = Role.new(:name => 'Non member', :position => 0)
Chris@1296 5 nonmember.builtin = Role::BUILTIN_NON_MEMBER
Chris@1296 6 nonmember.save
Chris@1296 7
Chris@1296 8 anonymous = Role.new(:name => 'Anonymous', :position => 0)
Chris@1296 9 anonymous.builtin = Role::BUILTIN_ANONYMOUS
Chris@1296 10 anonymous.save
Chris@1296 11 end
Chris@1296 12
Chris@1296 13 def self.down
Chris@1296 14 Role.destroy_all 'builtin <> 0'
Chris@1296 15 end
Chris@1296 16 end