A simple BINARY(16) UUID data type for Sequelize.
{
id: uuidDatatype(),
// ... other fields
}You can also add any custom options to the uuidDatatype function, the same way you would with Sequelize.UUID:
{
id: uuidDatatype({
primaryKey: true,
allowNull: false,
}),
// ... other fields
}