From 322b1df64166ff6818536ba2283ccab21b6d5e60 Mon Sep 17 00:00:00 2001 From: Alejandro Date: Fri, 8 Mar 2019 15:21:07 +0100 Subject: [PATCH] Fixed bug in .sql Fixed bug that was in the insert of the pet. --- db/mysql-with-inserts.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/mysql-with-inserts.sql b/db/mysql-with-inserts.sql index 4b97d72..4166485 100644 --- a/db/mysql-with-inserts.sql +++ b/db/mysql-with-inserts.sql @@ -43,4 +43,4 @@ INSERT INTO `daaexample`.`users` (`login`,`password`,`role`) VALUES ('normal', '7bf24d6ca2242430343ab7e3efb89559a47784eea1123be989c1b2fb2ef66e83','USER'); -- Insert for pets INSERT INTO `daaexample`.`pets` (`id`,`name`,`type`,`person`) -VALUES (0,'Mascota_Antón','PERRO',0); +VALUES (0,'Mascota_Antón','PERRO',1); -- 2.18.1