defmodule Prymn.Repo.Migrations.CreateApps do
use Ecto.Migration
def change do
create table(:apps) do
add :server_id, references("servers")
add :name, :string
add :type, :string
add :status, :string
add :metadata, :map
timestamps()
end