about summary refs log tree commit diff
path: root/db
diff options
context:
space:
mode:
authorShunsuke Michii <harukasan@me.com>2017-05-16 19:12:29 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-05-16 12:12:29 +0200
commit0dfffb6dcb48f881a39c17841ce8f02087d219d6 (patch)
tree0fce3d186a4dff043469a944fca085e55e54fb1b /db
parent1b0a5658f15eeca0934a892d95dd93222d8da583 (diff)
Make faster ProcessFeedService (#3080)
* Add index accounts on uri.

* Remove a blank line.
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20170516072309_add_index_accounts_on_uri.rb5
-rw-r--r--db/schema.rb3
2 files changed, 7 insertions, 1 deletions
diff --git a/db/migrate/20170516072309_add_index_accounts_on_uri.rb b/db/migrate/20170516072309_add_index_accounts_on_uri.rb
new file mode 100644
index 000000000..d98e9faa5
--- /dev/null
+++ b/db/migrate/20170516072309_add_index_accounts_on_uri.rb
@@ -0,0 +1,5 @@
+class AddIndexAccountsOnUri < ActiveRecord::Migration[5.0]
+  def change
+    add_index :accounts, :uri
+  end
+end
diff --git a/db/schema.rb b/db/schema.rb
index 76624f07a..00016e7c1 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -10,7 +10,7 @@
 #
 # It's strongly recommended that you check this file into your version control system.
 
-ActiveRecord::Schema.define(version: 20170508230434) do
+ActiveRecord::Schema.define(version: 20170516072309) do
 
   # These are extensions that must be enabled in order to support this database
   enable_extension "plpgsql"
@@ -50,6 +50,7 @@ ActiveRecord::Schema.define(version: 20170508230434) do
     t.datetime "last_webfingered_at"
     t.index "(((setweight(to_tsvector('simple'::regconfig, (display_name)::text), 'A'::\"char\") || setweight(to_tsvector('simple'::regconfig, (username)::text), 'B'::\"char\")) || setweight(to_tsvector('simple'::regconfig, (COALESCE(domain, ''::character varying))::text), 'C'::\"char\")))", name: "search_index", using: :gin
     t.index "lower((username)::text), lower((domain)::text)", name: "index_accounts_on_username_and_domain_lower", using: :btree
+    t.index ["uri"], name: "index_accounts_on_uri", using: :btree
     t.index ["url"], name: "index_accounts_on_url", using: :btree
     t.index ["username", "domain"], name: "index_accounts_on_username_and_domain", unique: true, using: :btree
   end