Commit the generated files

This commit is contained in:
2026-03-02 23:56:28 -04:00
parent cab4e79656
commit d17be6f641
54 changed files with 16981 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/* This file was generated by ODB, object-relational mapping (ORM)
* compiler for C++.
*/
DROP TABLE IF EXISTS "Agent";
CREATE TABLE IF NOT EXISTS "schema_version" (
"name" TEXT NOT NULL PRIMARY KEY,
"version" INTEGER NOT NULL,
"migration" INTEGER NOT NULL);
DELETE FROM "schema_version"
WHERE "name" = '';
CREATE TABLE "Agent" (
"id" TEXT NOT NULL PRIMARY KEY,
"role" TEXT NOT NULL,
"persistent" INTEGER NOT NULL,
"displayName" TEXT NOT NULL);
INSERT OR IGNORE INTO "schema_version" (
"name", "version", "migration")
VALUES ('', 1, 0);