mobilizon/priv/repo/migrations/20211008084901_add_timezone_to_addresses.exs
Thomas Citharel d58ca5743d
Add timezone handling
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2021-10-11 17:37:17 +02:00

10 lines
187 B
Elixir

defmodule Mobilizon.Storage.Repo.Migrations.AddTimezoneToAddresses do
use Ecto.Migration
def change do
alter table(:addresses) do
add(:timezone, :string)
end
end
end