f36f206a01
Reduces index size, makes it easier to debug using IndexedDB inspector, and hopefully improves lookup performance.
19 lines
584 B
JavaScript
19 lines
584 B
JavaScript
exports.run = (transaction) => {
|
|
const messagesStore = transaction.objectStore('messages');
|
|
|
|
console.log("Create message attachment metadata index: 'hasAttachments'");
|
|
messagesStore.createIndex(
|
|
'hasAttachments',
|
|
['conversationId', 'hasAttachments', 'received_at'],
|
|
{ unique: false }
|
|
);
|
|
|
|
['hasVisualMediaAttachments', 'hasFileAttachments'].forEach((name) => {
|
|
console.log(`Create message attachment metadata index: '${name}'`);
|
|
messagesStore.createIndex(
|
|
name,
|
|
['conversationId', 'received_at', name],
|
|
{ unique: false }
|
|
);
|
|
});
|
|
};
|