work on optimising vcenter queries
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -72,3 +72,22 @@ CREATE TABLE IF NOT EXISTS snapshot_registry (
|
||||
"table_name" TEXT NOT NULL UNIQUE,
|
||||
"snapshot_time" INTEGER NOT NULL
|
||||
);
|
||||
|
||||
-- The following tables are declared for sqlc type-checking only.
|
||||
-- Do not apply this file as a migration.
|
||||
CREATE TABLE sqlite_master (
|
||||
"type" TEXT,
|
||||
"name" TEXT,
|
||||
"tbl_name" TEXT,
|
||||
"rootpage" INTEGER,
|
||||
"sql" TEXT
|
||||
);
|
||||
|
||||
CREATE TABLE pragma_table_info (
|
||||
"cid" INTEGER,
|
||||
"name" TEXT,
|
||||
"type" TEXT,
|
||||
"notnull" INTEGER,
|
||||
"dflt_value" TEXT,
|
||||
"pk" INTEGER
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user