1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-24 22:55:52 +00:00
akkoma/priv/repo/migrations/20200505072231_remove_magic_key_field.exs

10 lines
174 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.RemoveMagicKeyField do
use Ecto.Migration
def change do
alter table(:users) do
remove(:magic_key, :string)
end
end
end