fix: something
This commit is contained in:
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user