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 add :provider, :string add :connection_token, :binary timestamps() end end end