sequelize-uuid-binary
v1.1.0
Published
A simple `BINARY(16)` UUID data type for Sequelize.
Downloads
114
Readme
sequelize-uuid-binary
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
}