Skip to content

Commit

Permalink
Fix module typo in the migration doc. (oban-bg#929)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdotb committed Jul 24, 2023
1 parent e77931b commit 64b998d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/oban/migration.ex
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ defmodule Oban.Migration do
defmodule MyApp.Repo.Migrations.AddOban do
use Ecto.Migration
def up, do: Oban.Migration.up()
def up, do: Oban.Migrations.up()
def down, do: Oban.Migration.down()
def down, do: Oban.Migrations.down()
end
```
Expand All @@ -53,9 +53,9 @@ defmodule Oban.Migration do
defmodule MyApp.Repo.Migrations.UpgradeObanToV11 do
use Ecto.Migration
def up, do: Oban.Migration.up(version: 11)
def up, do: Oban.Migrations.up(version: 11)
def down, do: Oban.Migration.down(version: 11)
def down, do: Oban.Migrations.down(version: 11)
end
```
Expand Down

0 comments on commit 64b998d

Please sign in to comment.