From 83b945844364f040aceaec3982f8b25a7b84596b Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Wed, 26 Nov 2008 09:54:32 -0800 Subject: [PATCH] Fixed a typo in the down migration. Reported by Roman Tataurov. #1839 --- db/migrate/002_add_project_id_to_deliverables.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrate/002_add_project_id_to_deliverables.rb b/db/migrate/002_add_project_id_to_deliverables.rb index 250d8b4..d7d3096 100644 --- a/db/migrate/002_add_project_id_to_deliverables.rb +++ b/db/migrate/002_add_project_id_to_deliverables.rb @@ -4,6 +4,6 @@ class AddProjectIdToDeliverables < ActiveRecord::Migration end def self.down - remove_column :deliverables, :project_idx + remove_column :deliverables, :project_id end end