social.metadata.moe/priv/repo/migrations/20200402063221_update_oban_jobs_table.exs

16 lines
353 B
Elixir
Raw Normal View History

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