Clear the decks for an updated version to be imported
[depot.git] / db / migrate / 20090202124100_add_product_date_available.rb
diff --git a/db/migrate/20090202124100_add_product_date_available.rb b/db/migrate/20090202124100_add_product_date_available.rb
deleted file mode 100644 (file)
index 4c05607..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-class AddProductDateAvailable < ActiveRecord::Migration
-  def self.up
-    add_column :products, :date_available, :date
-    
-    Product.update(1, :date_available => Time.utc(2008, 12, 25))
-    Product.update(2, :date_available => Time.utc(2010, 12, 25))
-    Product.update(3, :date_available => Time.utc(2009,  1,  1))
-  end
-
-  def self.down
-    remove_column :products, :date_available
-  end
-end