项目文件夹

文件
2026-07-13 12:10:05 +08:00

19 行
410 B
Markdown

# drizzle-orm-mysql 0.16.1
- Add possibility to define database custom data types
Example usage:
```typescript
const customText = customType<{ data: string }>({
dataType() {
return 'text';
},
});
const usersTable = mysqlTable('users', {
name: customText('name').notNull(),
});
```
For more examples please check [docs](https://github.com/drizzle-team/drizzle-orm/blob/main/docs/custom-types.lite.md)