How would I go about setting up a custom schema in a Sails Model to allow for UUID's for the "id" primary key?
I would love to do something like this.
```
id: {
type: 'uuid',
required: true
}
}
```
Or just `id: 'string' with a beforeCreate generateUUID filter at the end.
Would this work? Is there a best practice?
Thanks