##// END OF EJS Templates
Committer field in the Changesets table is now varchar 255....
Committer field in the Changesets table is now varchar 255. git-svn-id: http://redmine.rubyforge.org/svn/trunk@656 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r537:6446c312beab
r650:138566de0b9b
Show More
049_add_wiki_destroy_page_permission.rb
9 lines | 354 B | text/x-ruby | RubyLexer
/ db / migrate / 049_add_wiki_destroy_page_permission.rb
class AddWikiDestroyPagePermission < ActiveRecord::Migration
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.find_by_controller_and_action('wiki', 'destroy').destroy
end
end