2018-10-11 17:37:39 +02:00
|
|
|
defmodule Mobilizon.Repo.Migrations.CreateAddresses do
|
2018-01-17 11:39:01 +01:00
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
create table(:addresses) do
|
|
|
|
add :description, :string
|
|
|
|
add :floor, :string
|
|
|
|
add :addressCountry, :string
|
|
|
|
add :addressLocality, :string
|
|
|
|
add :addressRegion, :string
|
|
|
|
add :postalCode, :string
|
|
|
|
add :streetAddress, :string
|
|
|
|
add :geom, :geometry
|
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|