diff options
Diffstat (limited to 'priv')
-rw-r--r-- | priv/repo/migrations/20170912114248_add_context_index.exs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/priv/repo/migrations/20170912114248_add_context_index.exs b/priv/repo/migrations/20170912114248_add_context_index.exs new file mode 100644 index 000000000..83c585136 --- /dev/null +++ b/priv/repo/migrations/20170912114248_add_context_index.exs @@ -0,0 +1,8 @@ +defmodule Pleroma.Repo.Migrations.AddContextIndex do + use Ecto.Migration + @disable_ddl_transaction true + + def change do + create index(:activities, ["(data->>'type')", "(data->>'context')"], name: :activities_context_index, concurrently: true) + end +end |