rename before moving to monorepo

This commit is contained in:
wass08
2026-03-11 15:12:41 +01:00
parent 5bd9c21dbc
commit 3eeba322a8
29 changed files with 24 additions and 24 deletions
+24
View File
@@ -0,0 +1,24 @@
/**
* Database package
* Exports Drizzle ORM and types
* Note: Supabase clients are kept in the app's lib directory to avoid build-time initialization
*/
export type { Database as SupabaseDatabase } from './types'
// Drizzle exports
export { type Database, db } from './drizzle'
export * from './schema'
import * as dbSchema from './schema'
export const schema = dbSchema
export {
createId,
deletedAt,
id,
lower,
timestamps,
timestampsColumns,
timestampsColumnsSoftDelete,
} from './helpers'