mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-02-01 11:52:22 +00:00
10 lines
188 B
Elixir
10 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
|