mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 20:13:31 +03:00
12 lines
195 B
Elixir
12 lines
195 B
Elixir
|
defmodule Plausible.Repo.Migrations.UpdateObanJobsToV9 do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def up do
|
||
|
Oban.Migrations.up(version: 9)
|
||
|
end
|
||
|
|
||
|
def down do
|
||
|
Oban.Migrations.down(version: 9)
|
||
|
end
|
||
|
end
|