mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-06 00:49:46 +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
|