diff options
author | lain <lain@soykaf.club> | 2019-02-20 13:47:24 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-02-20 13:47:24 +0100 |
commit | 840d2c9f0bcc493703d12409bc64d2931b9ee3f5 (patch) | |
tree | 15fa61c0582e4910ab003e1e6ee7351bdfe71eea | |
parent | 5a46d37af9fb1914d795cb90d28356efcd0790d5 (diff) | |
download | pleroma-840d2c9f0bcc493703d12409bc64d2931b9ee3f5.tar.gz |
Remove superfluous migration.
-rw-r--r-- | priv/repo/migrations/20190219192317_create_user_mutes.exs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/priv/repo/migrations/20190219192317_create_user_mutes.exs b/priv/repo/migrations/20190219192317_create_user_mutes.exs deleted file mode 100644 index 304074567..000000000 --- a/priv/repo/migrations/20190219192317_create_user_mutes.exs +++ /dev/null @@ -1,7 +0,0 @@ -defmodule Pleroma.Repo.Migrations.CreateUserMutes do - use Ecto.Migration - - def change do - execute "UPDATE users SET info = jsonb_set(info, '{mutes}', '[]'::jsonb);" - end -end |