This commit is contained in:
2026-03-11 04:44:11 +00:00
parent 2e0009e3ca
commit 78adca7091
14 changed files with 94 additions and 36 deletions
-1
View File
@@ -4,7 +4,6 @@
* @type {import("@moduletrace/nsqlite/dist/types").NSQLITE_DatabaseSchemaType}
*/
const schema = {
dbName: "test-db",
tables: [
{
tableName: "users",
+3 -3
View File
@@ -3,7 +3,7 @@ export const NSQLiteTables = [
"users_ports",
] as const
export type NSQLITE_TEST_DB_USERS = {
export type NSQLITE_TURBOCI_ADMIN_USERS = {
/**
* The unique identifier of the record.
*/
@@ -26,7 +26,7 @@ export type NSQLITE_TEST_DB_USERS = {
all_deployment_access?: number;
}
export type NSQLITE_TEST_DB_USERS_PORTS = {
export type NSQLITE_TURBOCI_ADMIN_USERS_PORTS = {
/**
* The unique identifier of the record.
*/
@@ -43,4 +43,4 @@ export type NSQLITE_TEST_DB_USERS_PORTS = {
port?: number;
}
export type NSQLITE_TEST_DB_ALL_TYPEDEFS = NSQLITE_TEST_DB_USERS & NSQLITE_TEST_DB_USERS_PORTS
export type NSQLITE_TURBOCI_ADMIN_ALL_TYPEDEFS = NSQLITE_TURBOCI_ADMIN_USERS & NSQLITE_TURBOCI_ADMIN_USERS_PORTS