Updates
This commit is contained in:
+6
-3
@@ -1,8 +1,8 @@
|
||||
export const BunSQLiteTables = [
|
||||
export const NSQLiteTables = [
|
||||
"users",
|
||||
] as const
|
||||
|
||||
export type BUN_SQLITE_TEST_DB_USERS = {
|
||||
export type NSQLITE_TEST_DB_USERS = {
|
||||
/**
|
||||
* The unique identifier of the record.
|
||||
*/
|
||||
@@ -18,7 +18,10 @@ export type BUN_SQLITE_TEST_DB_USERS = {
|
||||
first_name?: string;
|
||||
last_name?: string;
|
||||
email?: string;
|
||||
username?: string;
|
||||
image?: string;
|
||||
password?: string;
|
||||
is_super_admin?: number;
|
||||
}
|
||||
|
||||
export type BUN_SQLITE_TEST_DB_ALL_TYPEDEFS = BUN_SQLITE_TEST_DB_USERS
|
||||
export type NSQLITE_TEST_DB_ALL_TYPEDEFS = NSQLITE_TEST_DB_USERS
|
||||
Reference in New Issue
Block a user