diff options
author | lain <lain@soykaf.club> | 2020-07-06 11:27:06 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-07-06 11:27:06 +0200 |
commit | 74b88c0a8bb12c3d534c826d6d1547bc40fff634 (patch) | |
tree | 7764900ac5be30ccc40e6d18e5fe9989c880721c /priv/repo/migrations | |
parent | ef4c16f6f19c0544ed22972c78195547b4cf3f5d (diff) | |
parent | 69f0b286f7b3e0518ac7ae54dfb06539dc179698 (diff) | |
download | pleroma-74b88c0a8bb12c3d534c826d6d1547bc40fff634.tar.gz pleroma-74b88c0a8bb12c3d534c826d6d1547bc40fff634.zip |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into chat-federation-information
Diffstat (limited to 'priv/repo/migrations')
-rw-r--r-- | priv/repo/migrations/20200706060258_remove_tesla_from_config.exs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/priv/repo/migrations/20200706060258_remove_tesla_from_config.exs b/priv/repo/migrations/20200706060258_remove_tesla_from_config.exs new file mode 100644 index 000000000..798687f8a --- /dev/null +++ b/priv/repo/migrations/20200706060258_remove_tesla_from_config.exs @@ -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 |