First Commit

This commit is contained in:
2026-03-04 14:21:07 +00:00
commit 86cfe54f6e
38 changed files with 1399 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
export const BunSQLiteTables = [
"users",
] as const
export type BUN_SQLITE_TEST_DB_USERS = {
/**
* The unique identifier of the record.
*/
id?: number;
/**
* The time when the record was created. (Unix Timestamp)
*/
created_at?: number;
/**
* The time when the record was updated. (Unix Timestamp)
*/
updated_at?: number;
first_name?: string;
last_name?: string;
email?: string;
image?: string;
}
export type BUN_SQLITE_TEST_DB_ALL_TYPEDEFS = BUN_SQLITE_TEST_DB_USERS