diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-18 03:45:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-18 03:45:51 +0200 |
commit | cc0a55cf9aead00e1cb044649f84c2187e0e4a35 (patch) | |
tree | 57c0920e813d7c8df9a0f483f111d2808f5045d3 /db/migrate | |
parent | 3a77090d015203a1ae20376ed69ca699eed3976d (diff) |
Add more accurate hashtag search (#11579)
* Add more accurate hashtag search Using ElasticSearch to index hashtags with edge n-grams and score them by usage within the last 7 days since last activity. Only hashtags that have been reviewed and are listable can appear in searches, unless they match the query exactly * Fix search analyzer dropping non-ascii characters
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20190815225426_add_last_status_at_to_tags.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/db/migrate/20190815225426_add_last_status_at_to_tags.rb b/db/migrate/20190815225426_add_last_status_at_to_tags.rb new file mode 100644 index 000000000..d83537c47 --- /dev/null +++ b/db/migrate/20190815225426_add_last_status_at_to_tags.rb @@ -0,0 +1,6 @@ +class AddLastStatusAtToTags < ActiveRecord::Migration[5.2] + def change + add_column :tags, :last_status_at, :datetime + add_column :tags, :last_trend_at, :datetime + end +end |