ash_hq/priv/repo/migrations/20231206220717_add_oban_jobs_table.exs

12 lines
190 B
Elixir
Raw Permalink Normal View History

defmodule AshHq.Repo.Migrations.AddObanJobsTable do
use Ecto.Migration
def up do
Oban.Migration.up(version: 11)
end
def change do
Oban.Migration.down(version: 1)
end
end