code cleanup, starting and stopping

This commit is contained in:
Zoe
2024-12-04 02:33:21 -06:00
parent a51cc0e779
commit 1bb4377a89
8 changed files with 469 additions and 118 deletions

View File

@@ -13,7 +13,6 @@ CREATE TABLE IF NOT EXISTS containers (
id INTEGER PRIMARY KEY AUTOINCREMENT,
container_id TEXT NOT NULL,
deployment_id INTEGER NOT NULL,
status TEXT NOT NULL,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY(deployment_id) REFERENCES deployments(id)
);