1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-22 14:30:16 +00:00
akkoma/priv/repo/migrations/20191006123824_add_keys_column.exs

10 lines
172 B
Elixir
Raw Normal View History

2019-10-06 14:22:35 +01:00
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