Replaces find(:first) calls in migrations.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10929 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2012-12-03 18:25:57 +00:00
parent 31c33f462d
commit 738cf2e187
9 changed files with 18 additions and 18 deletions

View File

@ -7,6 +7,6 @@ class IssueMove < ActiveRecord::Migration
end end
def self.down def self.down
Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'move_issues']).destroy Permission.where("controller=? and action=?", 'projects', 'move_issues').first.destroy
end end
end end

View File

@ -7,6 +7,6 @@ class IssueAddNote < ActiveRecord::Migration
end end
def self.down def self.down
Permission.find(:first, :conditions => ["controller=? and action=?", 'issues', 'add_note']).destroy Permission.where("controller=? and action=?", 'issues', 'add_note').first.destroy
end end
end end

View File

@ -8,7 +8,7 @@ class ExportPdf < ActiveRecord::Migration
end end
def self.down def self.down
Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'export_issues_pdf']).destroy Permission.where("controller=? and action=?", 'projects', 'export_issues_pdf').first.destroy
Permission.find(:first, :conditions => ["controller=? and action=?", 'issues', 'export_pdf']).destroy Permission.where("controller=? and action=?", 'issues', 'export_pdf').first.destroy
end end
end end

View File

@ -9,8 +9,8 @@ class CalendarAndActivity < ActiveRecord::Migration
end end
def self.down def self.down
Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'activity']).destroy Permission.where("controller=? and action=?", 'projects', 'activity').first.destroy
Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'calendar']).destroy Permission.where("controller=? and action=?", 'projects', 'calendar').first.destroy
Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'gantt']).destroy Permission.where("controller=? and action=?", 'projects', 'gantt').first.destroy
end end
end end

View File

@ -51,6 +51,6 @@ class CreateJournals < ActiveRecord::Migration
add_index "issue_histories", ["issue_id"], :name => "issue_histories_issue_id" add_index "issue_histories", ["issue_id"], :name => "issue_histories_issue_id"
Permission.find(:first, :conditions => ["controller=? and action=?", 'issues', 'history']).destroy Permission.where("controller=? and action=?", 'issues', 'history').first.destroy
end end
end end

View File

@ -8,7 +8,7 @@ class AddCommentsPermissions < ActiveRecord::Migration
end end
def self.down def self.down
Permission.find(:first, :conditions => ["controller=? and action=?", 'news', 'add_comment']).destroy Permission.where("controller=? and action=?", 'news', 'add_comment').first.destroy
Permission.find(:first, :conditions => ["controller=? and action=?", 'news', 'destroy_comment']).destroy Permission.where("controller=? and action=?", 'news', 'destroy_comment').first.destroy
end end
end end

View File

@ -7,6 +7,6 @@ class AddQueriesPermissions < ActiveRecord::Migration
end end
def self.down def self.down
Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'add_query']).destroy Permission.where("controller=? and action=?", 'projects', 'add_query').first.destroy
end end
end end

View File

@ -12,11 +12,11 @@ class AddRepositoriesPermissions < ActiveRecord::Migration
end end
def self.down def self.down
Permission.find(:first, :conditions => ["controller=? and action=?", 'repositories', 'show']).destroy Permission.where("controller=? and action=?", 'repositories', 'show').first.destroy
Permission.find(:first, :conditions => ["controller=? and action=?", 'repositories', 'browse']).destroy Permission.where("controller=? and action=?", 'repositories', 'browse').first.destroy
Permission.find(:first, :conditions => ["controller=? and action=?", 'repositories', 'entry']).destroy Permission.where("controller=? and action=?", 'repositories', 'entry').first.destroy
Permission.find(:first, :conditions => ["controller=? and action=?", 'repositories', 'revisions']).destroy Permission.where("controller=? and action=?", 'repositories', 'revisions').first.destroy
Permission.find(:first, :conditions => ["controller=? and action=?", 'repositories', 'revision']).destroy Permission.where("controller=? and action=?", 'repositories', 'revision').first.destroy
Permission.find(:first, :conditions => ["controller=? and action=?", 'repositories', 'diff']).destroy Permission.where("controller=? and action=?", 'repositories', 'diff').first.destroy
end end
end end

View File

@ -7,6 +7,6 @@ class AddRoadmapPermission < ActiveRecord::Migration
end end
def self.down def self.down
Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'roadmap']).destroy Permission.where("controller=? and action=?", 'projects', 'roadmap').first.destroy
end end
end end