here-i-am/priv/repo/migrations/20240713185614_create_devic...

13 lines
231 B
Elixir

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