From 9438654d993bc83edf83c79a3136132d3088447d Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Tue, 23 Sep 2025 12:21:45 +1000 Subject: [PATCH] docs: fix comment in schema.sql --- internal/machine/store/schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/machine/store/schema.sql b/internal/machine/store/schema.sql index dc2cbce1..d0fbb5f8 100644 --- a/internal/machine/store/schema.sql +++ b/internal/machine/store/schema.sql @@ -19,7 +19,7 @@ CREATE TABLE machines CREATE TABLE containers ( id TEXT NOT NULL PRIMARY KEY, - -- container is a JSON-serialized api.Container struct. + -- container is a JSON-serialized api.ServiceContainer struct. container TEXT NOT NULL DEFAULT '{}' CHECK (json_valid(container)), machine_id TEXT NOT NULL DEFAULT '', service_id TEXT AS (json_extract(container, '$.Config.Labels."uncloud.service.id"')),