mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2025-01-05 07:12:26 +00:00
11 lines
188 B
Elixir
11 lines
188 B
Elixir
|
defmodule Pleroma.Repo.Migrations.RemoveTeslaFromConfig do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def up do
|
||
|
execute("DELETE FROM config WHERE config.group = ':tesla'")
|
||
|
end
|
||
|
|
||
|
def down do
|
||
|
end
|
||
|
end
|