feathers
                                
                                 feathers copied to clipboard
                                
                                    feathers copied to clipboard
                            
                            
                            
                        Generated package.json is missing a `migrate:make` script
Steps to reproduce
- Generate an app through npm create
- Pick TypeScript, Koa, TypeBox, and SQLite when prompted
- Open package.jsonand look for thescriptskey
- migrate:makeis defined as an empty string.
Expected behavior
I would expect scripts['migrate:make'] to contain a command, like knex migrate:make -x mjs, to create a migration file.
Actual behavior
scripts['migrate:make'] is an empty string
Same happens when selecting PostgreSQL instead of SQLite.
same
The github repo has it as  "migrate:make": "knex migrate:make"
https://github.com/feathersjs/feathers-chat/blob/c7a7cf7fd99d6591dad372d11e04d3d574518492/feathers-chat-ts/package.json#L46C5-L46C40