feat: buildargs column

This commit is contained in:
Lorenzo Migliorero
2024-07-22 09:59:12 +02:00
parent 7240ff38f1
commit 655e29d96b
4 changed files with 2947 additions and 0 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE "application" ADD COLUMN "buildArgs" text;

File diff suppressed because it is too large Load Diff

View File

@@ -176,6 +176,13 @@
"when": 1721603595092,
"tag": "0024_dapper_supernaut",
"breakpoints": true
},
{
"idx": 25,
"version": "6",
"when": 1721633853118,
"tag": "0025_lying_mephisto",
"breakpoints": true
}
]
}

View File

@@ -107,6 +107,7 @@ export const applications = pgTable("application", {
.unique(),
description: text("description"),
env: text("env"),
buildArgs: text("buildArgs"),
memoryReservation: integer("memoryReservation"),
memoryLimit: integer("memoryLimit"),
cpuReservation: integer("cpuReservation"),