Gorbasch
Gorbasch
We're also migrating from Cypress to Playwright and would love to stick with sorry cypress. Is there a roadmap or something? I see that it's already supported by currents, but...
I also encountered this difference using Nuxt today. In production you can get the string with a TextDecoder: ``` const sql = await useStorage("assets:server").getItem("demo.sql"); const sqlString = new TextDecoder().decode(sql); ```...
I spent some time on this today. Actually the problem (or solution) is not the [extension array](https://github.com/unjs/nitro/blob/af42c19d03863614224375aa9a75b5cc2503e84a/src/rollup/plugins/raw.ts#L10) which is used in the resolveId method. The culprit is the [`isBinary`](https://github.com/unjs/nitro/blob/af42c19d03863614224375aa9a75b5cc2503e84a/src/rollup/plugins/raw.ts#L79) function...
@nguyentranchung I was just migrating n8n from SQLite to PostgreSQL as well and for me it worked casting the datetime type like this: ``` LOAD DATABASE FROM sqlite:///path/to/db.sqlite INTO postgresql:///n8n...
> [@nguyentranchung](https://github.com/nguyentranchung) I was just migrating n8n from SQLite to PostgreSQL as well and for me it worked casting the datetime type like this: > > ``` > LOAD DATABASE...