Skip to content

Commit

Permalink
Adiciona seed para tb_estoque e tb_ingrediente (estoque_id)
Browse files Browse the repository at this point in the history
  • Loading branch information
julianocanuto committed Dec 30, 2021
1 parent e78b0b5 commit 12f387f
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions src/main/resources/import.sql
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,19 @@ INSERT INTO tb_user_role (user_id, role_id) VALUES (1, 2);
INSERT INTO tb_user_role (user_id, role_id) VALUES (2, 2);
INSERT INTO tb_user_role (user_id, role_id) VALUES (3, 2);

INSERT INTO tb_estoque (id, quantidade) VALUES (1, 5);
INSERT INTO tb_estoque (id, quantidade) VALUES (2, 3);
INSERT INTO tb_estoque (quantidade) VALUES (5);
INSERT INTO tb_estoque (quantidade) VALUES (3);
INSERT INTO tb_estoque (quantidade) VALUES (12000);
INSERT INTO tb_estoque (quantidade) VALUES (7000);
INSERT INTO tb_estoque (quantidade) VALUES (30);
INSERT INTO tb_estoque (quantidade) VALUES (1000);
INSERT INTO tb_estoque (quantidade) VALUES (200);

UPDATE tb_produto SET estoque_id = 1 WHERE id = 1;
UPDATE tb_produto SET estoque_id = 2 WHERE id = 2;
UPDATE tb_produto SET estoque_id = 2 WHERE id = 2;

UPDATE tb_ingrediente SET estoque_id = 3 WHERE id = 1;
UPDATE tb_ingrediente SET estoque_id = 4 WHERE id = 2;
UPDATE tb_ingrediente SET estoque_id = 5 WHERE id = 3;
UPDATE tb_ingrediente SET estoque_id = 6 WHERE id = 4;
UPDATE tb_ingrediente SET estoque_id = 7 WHERE id = 5;

0 comments on commit 12f387f

Please sign in to comment.