fix build

This commit is contained in:
wass08
2026-02-20 19:45:15 +09:00
parent c58d5ab535
commit 66b4efba09
5 changed files with 38 additions and 4 deletions
+25
View File
@@ -10,6 +10,31 @@ export type { Database as SupabaseDatabase } from './types'
export { type Database, db } from './drizzle'
export * from './schema'
// Re-export drizzle-orm query operators so consumers can import everything
// from '@pascal-app/db' and avoid duplicate-instance type mismatches.
export {
and,
asc,
between,
count,
desc,
eq,
gt,
gte,
ilike,
inArray,
isNotNull,
isNull,
like,
lt,
lte,
ne,
not,
notInArray,
or,
sql,
} from 'drizzle-orm'
import * as dbSchema from './schema'
export const schema = dbSchema
export {