Files
OpenSign/apps/OpenSignServer/migrationdb/index.js
T

8 lines
232 B
JavaScript

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