Enable mix format for migrations

This commit is contained in:
rinpatch 2019-10-08 15:16:39 +03:00
commit 32808208be
94 changed files with 406 additions and 265 deletions

View file

@ -2,6 +2,6 @@ defmodule Pleroma.Repo.Migrations.AddLikesIndexToObjects do
use Ecto.Migration
def change do
create_if_not_exists index(:objects, ["(data->'likes')"], using: :gin, name: :objects_likes)
create_if_not_exists(index(:objects, ["(data->'likes')"], using: :gin, name: :objects_likes))
end
end