pleroma/priv/repo/migrations/20181206125616_add_tags_to_...

12 lines
218 B
Elixir

defmodule Pleroma.Repo.Migrations.AddTagsToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add :tags, {:array, :string}
end
create index(:users, [:tags], using: :gin)
end
end