Andrej Agapow

Results 8 comments of Andrej Agapow

I am not using `adonisjs` and anymore, but this should still be a current issue with the library.

Another workaround I have used is to set the default values manually: ```typescript table.timestamp('created_at', { useTz: true }) .notNullable() .defaultTo(this.raw('CURRENT_TIMESTAMP')); table.timestamp('updated_at', { useTz: true }) .notNullable() .defaultTo(this.raw('CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP'));...

For me it works when passing a `ref` as the `description` and adjusting it in the error or success callbacks. ~~~ts const description = ref('Long description wrapping over multiple lines....

@lahdekorpi my workaround was to use two different toasts like this: ```ts try { await showPromiseToast( doWork(), { title: 'Doing work' }, ) toast.success('Success', { richColors: true }) } catch...

@lahdekorpi thats true. I specifically build the `showPromiseToast` function to minimize these distractions if the promise resolves quickly, but this is not a perfect workaround and I think currently there...

This should work since [v12.3.0](https://github.com/vueuse/vueuse/releases/tag/v12.3.0). See PR https://github.com/vueuse/vueuse/pull/4382.

Unfortunately, I tried several variations but couldn't get it to work. Did the command `PRAGMA foreign_keys = ON` execute successfully on your end? Were foreign key constraints enforced afterward? Seems...

I think @ckblockit is using the `deleteQueue()` function. But the function fails if there are still jobs in the `job` table corresponding to that queue. When runnnig `boss.deleteQueue('test')` on a...