about summary refs log tree commit diff
path: root/db/migrate/20170322162804_add_search_index_to_tags.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170322162804_add_search_index_to_tags.rb')
-rw-r--r--db/migrate/20170322162804_add_search_index_to_tags.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20170322162804_add_search_index_to_tags.rb b/db/migrate/20170322162804_add_search_index_to_tags.rb
new file mode 100644
index 000000000..415dff9a0
--- /dev/null
+++ b/db/migrate/20170322162804_add_search_index_to_tags.rb
@@ -0,0 +1,9 @@
+class AddSearchIndexToTags < ActiveRecord::Migration[5.0]
+  def up
+    execute 'CREATE INDEX hashtag_search_index ON tags USING gin(to_tsvector(\'simple\', tags.name));'
+  end
+
+  def down
+    remove_index :tags, name: :hashtag_search_index
+  end
+end