From 6abcbfa1fd383a503e584469f2b37685a96946d9 Mon Sep 17 00:00:00 2001 From: joegatt Date: Thu, 29 Aug 2013 21:51:38 +0200 Subject: [PATCH] Remove superfluous migration --- ...130426150651_rename_sources_index_books_on_slug.rb | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 db/migrate/20130426150651_rename_sources_index_books_on_slug.rb diff --git a/db/migrate/20130426150651_rename_sources_index_books_on_slug.rb b/db/migrate/20130426150651_rename_sources_index_books_on_slug.rb deleted file mode 100644 index 6cc9f42a..00000000 --- a/db/migrate/20130426150651_rename_sources_index_books_on_slug.rb +++ /dev/null @@ -1,11 +0,0 @@ -class RenameSourcesIndexBooksOnSlug < ActiveRecord::Migration - def up - remove_index :sources, :name => :index_books_on_slug - add_index "sources", ["slug"], :name => "index_sources_on_slug", :unique => true - end - - def down - remove_index :sources, :name => :index_sources_on_slug - add_index "sources", ["slug"], :name => "index_books_on_slug", :unique => true - end -end