#7380 - Substitution field #2677
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix#2677
Loading…
Reference in New Issue
No description provided.
Delete Branch "7380_substitutionCondition"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -0,0 +1,4 @@
INSERT IGNORE INTO vn.observationType (`description`,code,hasNewBornMessage)
VALUES ('Sustitución','substitution',0);
ALTER TABLE vn.client ADD substitutionAllowed BOOL DEFAULT false NULL;
no es necesario crear un campo, usamos las observaciones
WIP: #7380 - Substitution fieldto #7380 - Substitution field@jgallego Hay un problema con este código SQL
Al ejecutarse, trunca la tabla y la tabla pasa a tener solo un registro, el del script. La configuración de la tabla tiene que el campo id es tinyint(3) y AI, sin embargo creo que esta ocurriendo por un tema de asincronia y es que primero inserta el registro con id 1 y luego las ficture.before.sql:522 tiene otro 1.
Ya me dices cuál es la mejor práctica a seguir
@jsegarra añáde el registro en las fixtures, y si va todo bien cuando hagas el push haces el insert en producción
@ -0,0 +1,2 @@
INSERT IGNORE INTO vn.observationType (`description`,code)
si esto fallaba antes..ahora también fallarà no? habría que quitar esta linea
Ahora no falla porque los tests pasan
ok, simplemente por asegurar lanza un myt run antes de mergear