Add Oban for background jobs.

This commit is contained in:
2025-04-27 13:57:10 +03:00
parent df4518b757
commit 14b0b78e15
8 changed files with 44 additions and 6 deletions
@@ -0,0 +1,9 @@
defmodule DecentralisedBookIndex.Repo.Migrations.AddOban do
use Ecto.Migration
use Ecto.Migration
def up, do: Oban.Migration.up()
def down, do: Oban.Migration.down(version: 1)
end