mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-17 21:25:54 +02:00
8 lines
232 B
JavaScript
8 lines
232 B
JavaScript
import createContactIndex from './createContactIndex.js';
|
|
import createDocumentIndex from './createDocumentIndex.js';
|
|
|
|
export default async function runDbMigrations() {
|
|
await createContactIndex();
|
|
await createDocumentIndex();
|
|
}
|