diff options
author | Fire Demon <firedemon@creature.cafe> | 2020-08-21 00:47:28 -0500 |
---|---|---|
committer | Fire Demon <firedemon@creature.cafe> | 2020-08-30 05:45:19 -0500 |
commit | 38f78fd1a2045a6641d76b12f7145f39de10ae53 (patch) | |
tree | 7fa8399c5a8b7a83603f885e5fcb8417d494adc2 /db/schema.rb | |
parent | f073087da2cdb8c15dfc0f4b9c2a4967e4714be1 (diff) |
[Federation, Revise] Add simple retries to ActivityPub::ProcessCollectionItemsService
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 267a55316..22210f7a2 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: 2020_08_18_160106) do +ActiveRecord::Schema.define(version: 2020_08_21_051721) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -298,6 +298,7 @@ ActiveRecord::Schema.define(version: 2020_08_18_160106) do t.bigint "account_id" t.string "uri", null: false t.boolean "processed", default: false, null: false + t.integer "retries", limit: 2, default: 0, null: false t.index ["account_id"], name: "index_collection_items_on_account_id" t.index ["account_id"], name: "unprocessed_collection_item_account_ids", where: "(processed = false)" t.index ["id"], name: "unprocessed_collection_item_ids", order: :desc, where: "(processed = false)" |