Back to Drizzle Orm

drizzle-orm-mysql 0.16.1

changelogs/drizzle-orm-mysql/0.16.1.md

0.45.2410 B
Original Source

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