2022-02-25 23:11:42 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-01 04:11:47 -07:00
|
|
|
# Copyright © 2017-2023 Pleroma Authors <https://pleroma.social/>
|
2022-02-25 23:11:42 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-04-02 00:34:11 -06:00
|
|
|
defmodule Pleroma.Repo.Migrations.UpdateObanJobsTable do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def up do
|
2020-04-10 12:27:50 -06:00
|
|
|
Oban.Migrations.up(version: 8)
|
2020-04-02 00:34:11 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def down do
|
2021-01-20 10:07:24 -07:00
|
|
|
Oban.Migrations.down(version: 8)
|
2020-04-02 00:34:11 -06:00
|
|
|
end
|
|
|
|
end
|