Started again with Rails 4
[feedcatcher.git] / db / migrate / 20090717095501_create_feed_items.rb
diff --git a/db/migrate/20090717095501_create_feed_items.rb b/db/migrate/20090717095501_create_feed_items.rb
deleted file mode 100644 (file)
index f34966b..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-class CreateFeedItems < ActiveRecord::Migration
-  def self.up
-    create_table :feed_items do |t|
-      t.string :feed_name
-      t.string :title
-      t.text :description
-
-      t.timestamps
-    end
-
-    add_index :feed_items, :feed_name
-  end
-
-  def self.down
-    remove_index :feed_items, :feed_name
-
-    drop_table :feed_items
-  end
-end