UNPKG

@arturwojnar/hermes-mongodb

Version:

Production-Ready TypeScript Outbox Pattern for MongoDB

7 lines 339 B
import { OutboxConsumersCollectionName } from './consts.js'; const ensureIndexes = async (db) => { const consumers = db.collection(OutboxConsumersCollectionName); await consumers.createIndex({ partitionKey: 1 }, { unique: true, name: 'idx_partitionKey_asc' }); }; export { ensureIndexes }; //# sourceMappingURL=ensureIndexes.js.map