sequelize migration:create --name addcolumn-updatedAt-event-table
npx sequelize-cli db:migrate
npx sequelize-cli model:generate --name Supplier --attributes name:string,url:string
npx sequelize-cli model:generate --name Item --attributes name:string,code:string
npx sequelize-cli model:generate --name Event --attributes origin:string,data:string,type:string
SELECT
setval('suppliers_id_seq', COALESCE((
SELECT
MAX(id) + 1 FROM suppliers), 1), FALSE);
opens on browser the instance console
Deploys the new code from the current folder to the available instances
Tails the latest logs
Adds a new instance