aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2018-03-27 19:59:54 +0200
committerlain <lain@soykaf.club>2018-03-27 19:59:54 +0200
commit0abd8a6bad9d769e95f4c636cd837f83e407f8e8 (patch)
treeff04db314d64fd9b91907a433905fc11f3a0e056
parentb56bb88c02dcbbc16ca3f861df5d5e09828fc56a (diff)
downloadpleroma-0abd8a6bad9d769e95f4c636cd837f83e407f8e8.tar.gz
Fix migration.
-rw-r--r--priv/repo/migrations/20180327175831_actually_drop_local_index.exs8
1 files changed, 8 insertions, 0 deletions
diff --git a/priv/repo/migrations/20180327175831_actually_drop_local_index.exs b/priv/repo/migrations/20180327175831_actually_drop_local_index.exs
new file mode 100644
index 000000000..2da65689c
--- /dev/null
+++ b/priv/repo/migrations/20180327175831_actually_drop_local_index.exs
@@ -0,0 +1,8 @@
+defmodule Pleroma.Repo.Migrations.ActuallyDropLocalIndex do
+ use Ecto.Migration
+
+ def change do
+ create index(:users, [:local])
+ drop_if_exists index("activities", :local)
+ end
+end