19
priv/repo/migrations/20180110092400_create_addresses.exs
Normal file
19
priv/repo/migrations/20180110092400_create_addresses.exs
Normal file
@@ -0,0 +1,19 @@
|
||||
defmodule Eventos.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
|
||||
Reference in New Issue
Block a user