mobilizon.chapril.org-mobil.../priv/repo/migrations/20210210143432_add_location_settings_to_user.exs
Thomas Citharel b1cc3868a6
Add user setting to provide location and show events near location on
homepage

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2021-02-12 19:10:22 +01:00

10 lines
191 B
Elixir

defmodule Mobilizon.Storage.Repo.Migrations.AddLocationSettingsToUser do
use Ecto.Migration
def change do
alter table(:user_settings) do
add(:location, :map)
end
end
end