summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20191006123824_add_keys_column.exs
blob: 4114ba4162b67aa4fc719bef8ffd585be2b2b057 (plain)
1
2
3
4
5
6
7
8
9
defmodule Pleroma.Repo.Migrations.AddKeysColumn do
  use Ecto.Migration

  def change do
    alter table("users") do
      add_if_not_exists(:keys, :text)
    end
  end
end