Skip to content

Commit

Permalink
Merge oban_jobs table migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
sorentwo committed Jul 12, 2024
1 parent ee87b7b commit 4d43326
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
defmodule Oban.Test.Repo.Postgres.Migrations.AddObanJobsTable do
use Ecto.Migration

defdelegate up, to: Oban.Migrations
def up do
Oban.Migrations.up(unlogged: false)
Oban.Migrations.up(prefix: "private", unlogged: false)
end

def down do
Oban.Migrations.down(prefix: "private", version: 1)
Oban.Migrations.down(version: 1)
end
end

This file was deleted.

0 comments on commit 4d43326

Please sign in to comment.