blob: e93514900c131eb5049ae4abaf3810f80b0593db (
plain)
1
2
3
4
5
6
7
8
9
|
class AddRepositoriesChangesPermission < ActiveRecord::Migration
def self.up
Permission.create :controller => 'repositories', :action => 'changes', :description => 'label_change_plural', :sort => 1475, :is_public => true, :mail_option => 0, :mail_enabled => 0
end
def self.down
Permission.find_by_controller_and_action('repositories', 'changes').destroy
end
end
|