Bull 1972 - Launchboard service status visual
6 unresolved threads
6 unresolved threads
Backend changes for service statuses component
Merge request reports
Activity
Filter activity
- src/models/test-data.sql 0 → 100644
- src/models/test-data.sql 0 → 100644
1 INSERT INTO services (name, status, description, url, image, created_at, updated_at) 2 VALUES ("confluence","Down", "data", "data", "data", now(), now()), 3 ("confluence","Error", "data", "data", "data", now(), now()), 27 39 ], 28 40 async (req, res, next) => { 29 41 try { 30 const { name, description, url, image } = req.body; 42 const { name, status, description, url, image } = req.body; @graham.smith Id hope so. You said the data would be posted to the launchboard db
Edited by Hunter Suchyj@graham.smith My brother in chris how am I supposed to know that
Edited by Hunter SuchyjBen did exactly that to create the API. recommend reviewing his stories and understanding what Grafana is posting. it is never good to just change the api contract without knowing what the consequences are.
20 20 unique: 'compositeIndex', 21 21 allowNull: false, 22 22 }, 23 status: { this isn't how migrations work - editing an old migration file doesn't do anything for the current db state since this migration has already been run. details: https://sequelize.org/docs/v6/other-topics/migrations/
@graham.smith Can you explain this a bit more? What files do I need to change?
Please register or sign in to reply