...
Migrations are stored in the packages/api/db/migration
folder. A new migration is created with the command knex migrate:make descriptive_name --knexfile=./.knex/knexfile.js
, which creates a new template file named YYYYMMDDHHMM_descriptive_name.js
, where the prefix indicates the date and time.
...