Skip to content

Conversation

@OleksiiKH0240
Copy link
Collaborator

Added support for unsigned types in MySQL and SingleStore.
With the following schema:

import { int, mysqlTable } from 'drizzle-orm/mysql-core';

export const allDataTypes = mysqlTable('all_data_types', {
	intUnsigned: int('integer_unsigned', { unsigned: true })
});

You can use a basic seeding script, and it will work correctly:

await seed(db, schema, { count: 10000 });

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants