39 lines
514 B
JavaScript
39 lines
514 B
JavaScript
/**
|
|
* Zen Database Module
|
|
* Complete database utilities for PostgreSQL
|
|
*/
|
|
|
|
// Core database functions
|
|
export {
|
|
query,
|
|
queryOne,
|
|
queryAll,
|
|
transaction,
|
|
getPool,
|
|
closePool,
|
|
testConnection
|
|
} from './db.js';
|
|
|
|
// CRUD helper functions
|
|
export {
|
|
create,
|
|
findById,
|
|
find,
|
|
findOne,
|
|
updateById,
|
|
update,
|
|
deleteById,
|
|
deleteWhere,
|
|
count,
|
|
exists
|
|
} from './crud.js';
|
|
|
|
// Database initialization
|
|
export {
|
|
initDatabase,
|
|
createAuthTables,
|
|
tableExists,
|
|
dropAuthTables
|
|
} from './init.js';
|
|
|