fix: something

This commit is contained in:
hibna
2026-08-02 20:26:54 +03:00
parent 5215560ede
commit 11924416a9
38 changed files with 2198 additions and 466 deletions
+5
View File
@@ -10,6 +10,11 @@ export const games = pgTable('games', {
automationRules: jsonb('automation_rules').default([]).notNull(),
startupCommand: text('startup_command').notNull(),
stopCommand: text('stop_command'),
/// Total budget for a graceful shutdown before the container is killed.
stopTimeoutSeconds: integer('stop_timeout_seconds').default(30).notNull(),
/// Mount point of the server data directory inside the container. Null means
/// "let the daemon derive it from the image".
containerDataPath: text('container_data_path'),
environmentVars: jsonb('environment_vars').default([]).notNull(),
createdAt: timestamp('created_at', { withTimezone: true }).defaultNow().notNull(),
updatedAt: timestamp('updated_at', { withTimezone: true }).defaultNow().notNull(),