1
0
Fork 0
mirror of https://git.pleroma.social/pleroma/pleroma.git synced 2025-01-23 23:48:08 +00:00
pleroma/priv/repo/migrations/20191123103423_remove_info_from_users.exs

10 lines
180 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.RemoveInfoFromUsers do
use Ecto.Migration
def change do
alter table(:users) do
remove(:info, :map, default: %{})
end
end
end