summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20181206125616_add_tags_to_users.exs
blob: c7b6105dd2e511cd82388df647681d0767858d88 (plain)
1
2
3
4
5
6
7
8
9
10
11
defmodule Pleroma.Repo.Migrations.AddTagsToUsers do
  use Ecto.Migration

  def change do
    alter table(:users) do
      add(:tags, {:array, :string})
    end

    # create_if_not_exists(index(:users, [:tags], using: :gin))
  end
end