Mercurial > hg > soundsoftware-site
view .svn/pristine/eb/ebef0178ea9211ca767a43bb420e107b91137239.svn-base @ 1543:05d639e5d59b feature_1136
First cut of a git export script
author | Chris Cannam |
---|---|
date | Tue, 12 Jan 2016 15:15:02 +0000 |
parents | dffacf8a6908 |
children |
line wrap: on
line source
class AddWikiDestroyPagePermission < ActiveRecord::Migration # model removed class Permission < ActiveRecord::Base; end def self.up Permission.create :controller => 'wiki', :action => 'destroy', :description => 'button_delete', :sort => 1740, :is_public => false, :mail_option => 0, :mail_enabled => 0 end def self.down Permission.where(:controller => "wiki", :action => "destroy").each {|p| p.destroy} end end