mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-05 16:39:47 +00:00
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
|