mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-27 10:19:59 +00:00
559c889f1b
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
19 lines
419 B
Elixir
19 lines
419 B
Elixir
defmodule Mobilizon.Repo.Migrations.CreateAddresses do
|
|
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
|