10 lines
174 B
Elixir
10 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
|