Skip to content

Commit 23cc58f

Browse files
committed
fix: boolean ops
1 parent 893d2b6 commit 23cc58f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/db/src/drizzle/schema.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -540,10 +540,7 @@ export const apikey = pgTable(
540540
'btree',
541541
table.prefix.asc().nullsLast().op('text_ops')
542542
),
543-
index('apikey_enabled_idx').using(
544-
'btree',
545-
table.enabled.asc().nullsLast().op('boolean_ops')
546-
),
543+
index('apikey_enabled_idx').using('btree', table.enabled.asc().nullsLast()),
547544
]
548545
);
549546
export const organization = pgTable(

0 commit comments

Comments
 (0)