Part of sql generated by xo schema <database url> command:
const sqlstr = INSERT INTO prod.task`
I want to remove schema so it can be configured at runtime. So I run xo schema --schema="" <database url> , and expect to get:
const sqlstr = INSERT INTO task`
But found it not work.