diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-11-09 02:45:49 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-11-09 02:45:49 +0000 |
commit | a40e2ec5c7e180e02c332cce36e767914ac69518 (patch) | |
tree | 3457c08c076b707ca68a8ac98a9c7130cd6f93b0 /db | |
parent | f8da2233dbacc3bf805f3827b25d2c3ad528011b (diff) | |
download | redmine-a40e2ec5c7e180e02c332cce36e767914ac69518.tar.gz redmine-a40e2ec5c7e180e02c332cce36e767914ac69518.zip |
remove trailing white-spaces from db/migrate/081_create_projects_trackers.rb (#9510)
Contributed by Igor Zubkov.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7754 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/081_create_projects_trackers.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/081_create_projects_trackers.rb b/db/migrate/081_create_projects_trackers.rb index 70fea188e..193da07f6 100644 --- a/db/migrate/081_create_projects_trackers.rb +++ b/db/migrate/081_create_projects_trackers.rb @@ -5,7 +5,7 @@ class CreateProjectsTrackers < ActiveRecord::Migration t.column :tracker_id, :integer, :default => 0, :null => false end add_index :projects_trackers, :project_id, :name => :projects_trackers_project_id - + # Associates all trackers to all projects (as it was before) tracker_ids = Tracker.find(:all).collect(&:id) Project.find(:all).each do |project| |