baseless/priv/repo/migrations/20220314220000_add_location_to_users.exs
2025-01-24 09:36:38 -08:00

10 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