You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's no support for creating composite indexes (indexes on multiple columns) in migrations, unless using raw sql.
I think the addIndex function should accept a string (like today) or an array in the column param.
The addIndex and the removeIndex functions need to be changed to support this.
The persistence.store.websql module already supports composite indexes in the createIndex function. The addIndex implementation could be very similar to that.
The text was updated successfully, but these errors were encountered:
There's no support for creating composite indexes (indexes on multiple columns) in migrations, unless using raw sql.
I think the
addIndex
function should accept a string (like today) or an array in the column param.The
addIndex
and theremoveIndex
functions need to be changed to support this.The
persistence.store.websql
module already supports composite indexes in thecreateIndex
function. TheaddIndex
implementation could be very similar to that.The text was updated successfully, but these errors were encountered: