diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-03 18:25:57 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-03 18:25:57 +0000 |
commit | 738cf2e187f90cd7273ae0de610bfea49b4b799f (patch) | |
tree | 7e43e83c5122a06a3a33911cd3e20e67c9856e93 /db/migrate/006_calendar_and_activity.rb | |
parent | 31c33f462d92aead29b8feb6445d8fe5626c4963 (diff) | |
download | redmine-738cf2e187f90cd7273ae0de610bfea49b4b799f.tar.gz redmine-738cf2e187f90cd7273ae0de610bfea49b4b799f.zip |
Replaces find(:first) calls in migrations.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10929 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db/migrate/006_calendar_and_activity.rb')
-rw-r--r-- | db/migrate/006_calendar_and_activity.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/db/migrate/006_calendar_and_activity.rb b/db/migrate/006_calendar_and_activity.rb index 1cdc91d8e..a30979a21 100644 --- a/db/migrate/006_calendar_and_activity.rb +++ b/db/migrate/006_calendar_and_activity.rb @@ -9,8 +9,8 @@ class CalendarAndActivity < ActiveRecord::Migration end def self.down - Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'activity']).destroy - Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'calendar']).destroy - Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'gantt']).destroy + Permission.where("controller=? and action=?", 'projects', 'activity').first.destroy + Permission.where("controller=? and action=?", 'projects', 'calendar').first.destroy + Permission.where("controller=? and action=?", 'projects', 'gantt').first.destroy end end |