Add appPortBindings port count column

This commit is contained in:
Johannes Zellner
2024-02-22 16:42:28 +01:00
parent aed9801501
commit 909fe5dc15
3 changed files with 14 additions and 4 deletions

View File

@@ -115,6 +115,7 @@ CREATE TABLE IF NOT EXISTS appPortBindings(
type VARCHAR(8) NOT NULL DEFAULT "tcp",
environmentVariable VARCHAR(128) NOT NULL,
appId VARCHAR(128) NOT NULL,
count INTEGER DEFAULT 1,
FOREIGN KEY(appId) REFERENCES apps(id),
PRIMARY KEY(hostPort));