mirror of
https://github.com/latentPrion/cppbessot.git
synced 2026-04-18 02:54:23 +00:00
Commit the generated files
This commit is contained in:
24
db/test-schema-v1.1/generated-sql-ddl/sqlite/Agent.sql
Normal file
24
db/test-schema-v1.1/generated-sql-ddl/sqlite/Agent.sql
Normal 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);
|
||||
|
||||
Reference in New Issue
Block a user