forked from potsda.mn/mobilizon
b1cc3868a6
homepage Signed-off-by: Thomas Citharel <tcit@tcit.fr>
10 lines
191 B
Elixir
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
|