2022-02-25 22:11:42 -08:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-01 03:11:47 -08:00
|
|
|
# Copyright © 2017-2023 Pleroma Authors <https://pleroma.social/>
|
2022-02-25 22:11:42 -08:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-08-01 07:28:00 -07:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddObanJobsTable do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
2021-01-20 09:07:24 -08:00
|
|
|
def up do
|
|
|
|
Oban.Migrations.up(version: 2)
|
|
|
|
end
|
|
|
|
|
2019-08-01 07:28:00 -07:00
|
|
|
defdelegate down, to: Oban.Migrations
|
|
|
|
end
|