pleroma/priv/repo/migrations/20220314220000_add_location_to_users.exs
marcin mikołajczak 4c56e0fceb Support account location field
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2022-03-14 22:41:33 +01:00

9 lines
183 B
Elixir

defmodule Pleroma.Repo.Migrations.AddLocationToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add_if_not_exists(:location, :string)
end
end
end