We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 012cf39 commit dcde1eeCopy full SHA for dcde1ee
stubs/migration.stub
@@ -8,14 +8,14 @@ import { QueueSchemaService } from '@boringnode/queue'
8
9
export default class extends BaseSchema {
10
async up() {
11
- const schemaService = new QueueSchemaService(this.db.connection().getWriteClient())
+ const schemaService = new QueueSchemaService(this.db.getWriteClient())
12
13
await schemaService.createJobsTable()
14
await schemaService.createSchedulesTable()
15
}
16
17
async down() {
18
19
20
await schemaService.dropSchedulesTable()
21
await schemaService.dropJobsTable()
0 commit comments