1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-24 22:55:52 +00:00
akkoma/priv/repo/migrations/20200402063221_update_oban_jobs_table.exs

12 lines
194 B
Elixir
Raw Normal View History

2020-04-02 09:34:11 +03:00
defmodule Pleroma.Repo.Migrations.UpdateObanJobsTable do
use Ecto.Migration
def up do
2020-04-10 21:27:50 +03:00
Oban.Migrations.up(version: 8)
2020-04-02 09:34:11 +03:00
end
def down do
2020-04-10 21:27:50 +03:00
Oban.Migrations.down(version: 7)
2020-04-02 09:34:11 +03:00
end
end