This commit is contained in:
2022-02-12 23:24:11 -05:00
committed by oliviasculley
parent 485965d9c9
commit 9734be4966
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,13 @@
defmodule Lokal.Repo.Migrations.AddOban do
use Ecto.Migration
def up do
Oban.Migrations.up()
end
# We specify `version: 1` in `down`, ensuring that we'll roll all the way back down if
# necessary, regardless of which version we've migrated `up` to.
def down do
Oban.Migrations.down(version: 1)
end
end