13 lines
230 B
Elixir
13 lines
230 B
Elixir
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
|