Termine la venta + como siempre, mas cosas .w.

This commit is contained in:
Daniel Cortés
2019-07-04 00:04:16 -04:00
parent 3c3147bc23
commit 5aa83723b7
22 changed files with 513 additions and 162 deletions

View File

@@ -1,3 +1,8 @@
start transaction;
set foreign_key_checks = 0;
set autocommit = 0;
INSERT INTO `autor`
VALUES (1, 'Howard Philips', 'Lovecraft', NULL, '2019-06-12 20:18:57'),
(2, 'Stephen', 'King', NULL, '2019-06-12 20:18:57'),
@@ -107,3 +112,8 @@ VALUES (4, 1),
INSERT INTO `usuario`
VALUES (2, 'admin', 0x243168097E0BA82B896F348BABCEB600A8DCA30488C6F238F97FD8737BD00B27,
0x3564ECCCD85CF0583F9C090602E998B7, 2, '2019-06-13 20:04:53');
set autocommit = 1;
set foreign_key_checks = 1;
commit;