defmodule HereIAm.Repo.Migrations.CreateDevices do use Ecto.Migration def change do create table(:devices) do add :ip_address, :string add :tts, :string timestamps(type: :utc_datetime) end end end