defmodule Prymn.Repo.Migrations.CreateServers do use Ecto.Migration def change do create table(:servers) do add :name, :string add :ipv4, :string add :ipv6, :string timestamps() end end end