Is unsigned int option available in drizzle?
I am searching for unsigned int option for mysql. I found that this feature is merged at https://github.com/drizzle-team/drizzle-orm/pull/1271
Is this added in the stable version? If not, is there any ETA?
GitHub
Unsigned Ints; Custom names for PrimaryKeys and ForeignKeys by Andr...
Added unsigned option for all ints in MySQL
column: int('column_name', { unsigned: true })
Add custom names for primary keys and foreign keys for all dialects
const table = sqliteTable('...
4 Replies
@Angelelz
Here you go, it was release in v0.29
GitHub
Releases · drizzle-team/drizzle-orm
Headless TypeScript ORM with a head. Runs on Node, Bun and Deno. Lives on the Edge and yes, it's a JavaScript ORM too 😅 - drizzle-team/drizzle-orm
Tnx a lot. I was using .28 version. That was the issue.