diff --git a/cli/src/commands/experiment.zig b/cli/src/commands/experiment.zig index cdf64f6..f3875e2 100644 --- a/cli/src/commands/experiment.zig +++ b/cli/src/commands/experiment.zig @@ -92,7 +92,7 @@ fn createExperiment(allocator: std.mem.Allocator, args: []const []const u8, json var database = try db.DB.init(allocator, db_path); defer database.close(); - // TODO: Add synced column to schema - required for server sync + // Insert experiment with synced=0 (not synced to server yet) const sql = "INSERT INTO ml_experiments (experiment_id, name, description, status, synced) VALUES (?, ?, ?, 'active', 0);"; const stmt = try database.prepare(sql); defer db.DB.finalize(stmt);