Description / Steps to reproduce
Use the MySQL datasource, and define indexes in the model definition like so and run migration
@model({
indexes: {
uniqueIndex: {
keys: {
property: 1,
anotherProperty: 1
}
}
}
})
Current Behavior
The indexes are not actually created in the database
Expected Behavior
Indexes are created in the database