diff options
| author | Roman Chvanikov <chvanikoff@pm.me> | 2019-06-07 01:20:50 +0300 |
|---|---|---|
| committer | Roman Chvanikov <chvanikoff@pm.me> | 2019-06-07 01:20:50 +0300 |
| commit | 01fe5abad1a98b98a0dd5e3c04bf65809389fd78 (patch) | |
| tree | b829b75c225b8ffbacd22884693a622dc7584a70 /priv | |
| parent | b1b1a270e8f17b76d08771ca1e4025b1d227da05 (diff) | |
| parent | 62cdf701f47352004c293c3ca049d232b3d16af7 (diff) | |
| download | pleroma-01fe5abad1a98b98a0dd5e3c04bf65809389fd78.tar.gz pleroma-01fe5abad1a98b98a0dd5e3c04bf65809389fd78.zip | |
Resolve conflicts
Diffstat (limited to 'priv')
| -rw-r--r-- | priv/repo/migrations/20190603115238_add_index_on_activities_local.exs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/priv/repo/migrations/20190603115238_add_index_on_activities_local.exs b/priv/repo/migrations/20190603115238_add_index_on_activities_local.exs new file mode 100644 index 000000000..89daa9705 --- /dev/null +++ b/priv/repo/migrations/20190603115238_add_index_on_activities_local.exs @@ -0,0 +1,7 @@ +defmodule Pleroma.Repo.Migrations.AddIndexOnActivitiesLocal do + use Ecto.Migration + + def change do + create(index("activities", [:local])) + end +end |
