mirror of
https://github.com/plausible/analytics.git
synced 2024-12-25 10:33:01 +03:00
12 lines
183 B
Elixir
12 lines
183 B
Elixir
|
defmodule Plausible.Repo.Migrations.AddObanJobsTable do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def up do
|
||
|
Oban.Migrations.up()
|
||
|
end
|
||
|
|
||
|
def down do
|
||
|
Oban.Migrations.down(version: 1)
|
||
|
end
|
||
|
end
|