fix build

This commit is contained in:
wass08
2026-02-23 07:41:17 +09:00
parent 9129a5b847
commit 373d9310ee
5 changed files with 143 additions and 134 deletions
-24
View File
@@ -10,30 +10,6 @@ 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