Skip to content

Commit cbc54d7

Browse files
Merge pull request #559 from fmcalado/fix/missing-type-on-unique-email-documentation
fix: Adds AnyPgColumn to documentation
2 parents 0700e3f + 2d7ec79 commit cbc54d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/guides/unique-case-insensitive-email.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Drizzle has simple and flexible API, which lets you easily create such an index
2626
<CodeTab>
2727
```ts copy {12,13}
2828
import { SQL, sql } from 'drizzle-orm';
29-
import { pgTable, serial, text, uniqueIndex } from 'drizzle-orm/pg-core';
29+
import { AnyPgColumn, pgTable, serial, text, uniqueIndex } from 'drizzle-orm/pg-core';
3030

3131
export const users = pgTable(
3232
'users',

0 commit comments

Comments
 (0)