Files
OpenSign/apps/OpenSignServer/migrationdb/index.js
T
2026-05-25 17:24:36 +05:30

8 lines
232 B
JavaScript

import createContactIndex from './createContactIndex.js';
import createDocumentIndex from './createDocumentIndex.js';
export default async function runDbMigrations() {
await createContactIndex();
await createDocumentIndex();
}