mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-18 13:56:01 +01: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
|