From f6aa8476c838f89687cb9b988cbd87f98183bcfb Mon Sep 17 00:00:00 2001 From: Neil Lalonde Date: Wed, 7 Aug 2013 16:26:26 -0400 Subject: [PATCH] Add index to blocked_emails for last_match_at --- .../20130807202516_add_last_match_index_to_blocked_emails.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20130807202516_add_last_match_index_to_blocked_emails.rb diff --git a/db/migrate/20130807202516_add_last_match_index_to_blocked_emails.rb b/db/migrate/20130807202516_add_last_match_index_to_blocked_emails.rb new file mode 100644 index 00000000000..4a49304ee4d --- /dev/null +++ b/db/migrate/20130807202516_add_last_match_index_to_blocked_emails.rb @@ -0,0 +1,5 @@ +class AddLastMatchIndexToBlockedEmails < ActiveRecord::Migration + def change + add_index :blocked_emails, :last_match_at + end +end