summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-09-15 20:22:17 +0000
committerrinpatch <rinpatch@sdf.org>2019-09-15 20:22:17 +0000
commit2990c0a53b14646eab19b57d068ac8aa7e17ea4e (patch)
tree7681ac3405657948a062c396b70bb2f275e91238 /priv
parent9c64a25713790fefa8b5c419aeadf55113c17073 (diff)
parent3b8ec98b0e3b3fb2bd333f3be724676c4821366f (diff)
downloadpleroma-2990c0a53b14646eab19b57d068ac8aa7e17ea4e.tar.gz
pleroma-2990c0a53b14646eab19b57d068ac8aa7e17ea4e.zip
Merge branch '1149-oban-job-queue' into 'develop'
[#1149] `oban`-based job & retry queues Closes #1149 See merge request pleroma/pleroma!1518
Diffstat (limited to 'priv')
-rw-r--r--priv/repo/migrations/20190730055101_add_oban_jobs_table.exs6
1 files changed, 6 insertions, 0 deletions
diff --git a/priv/repo/migrations/20190730055101_add_oban_jobs_table.exs b/priv/repo/migrations/20190730055101_add_oban_jobs_table.exs
new file mode 100644
index 000000000..2f201bd05
--- /dev/null
+++ b/priv/repo/migrations/20190730055101_add_oban_jobs_table.exs
@@ -0,0 +1,6 @@
+defmodule Pleroma.Repo.Migrations.AddObanJobsTable do
+ use Ecto.Migration
+
+ defdelegate up, to: Oban.Migrations
+ defdelegate down, to: Oban.Migrations
+end