mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-04-06 05:34:28 +00:00
Adding the function interface now allows the user to specify
a default value for UUID types:
```
const TestModel = sequelize.define('test_model', {
uuid: {
type: Sequelize.UUID,
defaultValue: Sequelize.UUIDV4()
}
});
```