summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20191006123824_add_keys_column.exs
blob: b6c615646a844e93a9eac9bfdd5b23fe4c28ddb2 (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