Fydon
Fydon
Sorry it has been a while since I have had the opportunity to work more on this. I've [created a separate branch](https://github.com/Fydon/knex/pull/2/files) to look into the option of adding a...
> Sorry I also meant to say that I created test\unit\migrations\migrate\sources\fs-migrations.js but I wasn't sure where to add it in the test suite. You may be happy with the tests...
Hi @kibertoad and @OlivierCavadenti. Thank you for your work on this project. Please look at my previous two comments when you have a chance.
Thank you for the review. Yes my hope is that the versioning of each migration will be used for any further alterations to the internal tables. I could not think...
Sorry for the delay. I got COVID. I've created [another branch](https://github.com/Fydon/knex/pull/4/files) which I think performs what you requested. Please check if this is better. I'm struggling to work out how...
I've managed to create a test in [that branch](https://github.com/Fydon/knex/pull/4/files). Using breakpoints during the test, the code appears to be working as expected. However the test is showing the table as...
I found the issue. Are you happy with [the implementation](https://github.com/Fydon/knex/pull/4/files)? If not, how can I improve it? Instead of including a new database, I could try using `test\test.sqlite3` and setting...
@kibertoad @OlivierCavadenti I'm sure you both are really busy. Any time you could spare to move this along is appreciated. Please see my last comment.
I was using [Multer](https://www.npmjs.com/package/multer) to send a file through Express. Using File directly or its stream failed, but using File's [buffer](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/841c5d5e2c334972517b49c9adc931bc7b6a3d95/types/multer/index.d.ts#L46) worked.
The following worked for me ``` const servicePostData = multer(); this.app // app is express.Application .route('/uploadFile') .post(servicePostData .single('file'), async (request: express.Request, response: express.Response) => { const form = new FormData();...