pleroma/priv/repo/migrations/20200402063221_update_oban_jobs_table.exs

16 lines
353 B
Elixir
Raw Normal View History

2022-02-26 06:11:42 +00:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
2022-02-26 06:11:42 +00:00
# SPDX-License-Identifier: AGPL-3.0-only
2020-04-02 06:34:11 +00:00
defmodule Pleroma.Repo.Migrations.UpdateObanJobsTable do
use Ecto.Migration
def up do
2020-04-10 18:27:50 +00:00
Oban.Migrations.up(version: 8)
2020-04-02 06:34:11 +00:00
end
def down do
Oban.Migrations.down(version: 8)
2020-04-02 06:34:11 +00:00
end
end