Mercurial > hg > soundsoftware-site
comparison .svn/pristine/4d/4d372ac55a3e4bd5caf2e8a6a172a18144526b3c.svn-base @ 1517:dffacf8a6908 redmine-2.5
Update to Redmine SVN revision 13367 on 2.5-stable branch
author | Chris Cannam |
---|---|
date | Tue, 09 Sep 2014 09:29:00 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1516:b450a9d58aed | 1517:dffacf8a6908 |
---|---|
1 class AddBoardsPermissions < ActiveRecord::Migration | |
2 # model removed | |
3 class Permission < ActiveRecord::Base; end | |
4 | |
5 def self.up | |
6 Permission.create :controller => "boards", :action => "new", :description => "button_add", :sort => 2000, :is_public => false, :mail_option => 0, :mail_enabled => 0 | |
7 Permission.create :controller => "boards", :action => "edit", :description => "button_edit", :sort => 2005, :is_public => false, :mail_option => 0, :mail_enabled => 0 | |
8 Permission.create :controller => "boards", :action => "destroy", :description => "button_delete", :sort => 2010, :is_public => false, :mail_option => 0, :mail_enabled => 0 | |
9 end | |
10 | |
11 def self.down | |
12 Permission.where(:controller => "boards", :action => "new").each {|p| p.destroy} | |
13 Permission.where(:controller => "boards", :action => "edit").each {|p| p.destroy} | |
14 Permission.where(:controller => "boards", :action => "destroy").each {|p| p.destroy} | |
15 end | |
16 end |