mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-02-23 05:33:07 +01:00
10 lines
151 B
Elixir
10 lines
151 B
Elixir
defmodule Pleroma.Repo.Migrations.FixSPCUsers do
|
|
use Ecto.Migration
|
|
|
|
def up do
|
|
Pleroma.SpcFixes.upgrade_users()
|
|
end
|
|
|
|
def down do
|
|
end
|
|
end
|