8bed6ea922
Mainly the `magic_key` field
9 lines
174 B
Elixir
9 lines
174 B
Elixir
defmodule Pleroma.Repo.Migrations.RemoveMagicKeyField do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:users) do
|
|
remove(:magic_key, :string)
|
|
end
|
|
end
|
|
end
|