1
0
Fork 0
mirror of https://git.pleroma.social/pleroma/pleroma.git synced 2025-03-01 01:01:06 +00:00
pleroma/priv/repo/migrations/20191006123824_add_keys_column.exs

10 lines
173 B
Elixir
Raw Normal View History

2019-10-06 13:22:35 +00:00
defmodule Pleroma.Repo.Migrations.AddKeysColumn do
use Ecto.Migration
def change do
alter table("users") do
2019-10-08 12:16:39 +00:00
add_if_not_exists(:keys, :text)
2019-10-06 13:22:35 +00:00
end
end
end