migration to delete migrated tesla setting

This commit is contained in:
Alexander Strizhakov 2020-07-06 09:12:29 +03:00
parent 480dfafa83
commit 465ddcfd20
No known key found for this signature in database
GPG Key ID: 022896A53AEF1381
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
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