2022-02-26 06:11:42 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-09-17 10:04:43 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.UpdateOban do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def up do
|
|
|
|
Oban.Migrations.up(version: 4)
|
|
|
|
end
|
|
|
|
|
|
|
|
def down do
|
2021-01-20 17:07:24 +00:00
|
|
|
Oban.Migrations.down(version: 3)
|
2019-09-17 10:04:43 +00:00
|
|
|
end
|
|
|
|
end
|