Skip to content

Commit

Permalink
fix min bound for nextras dbal
Browse files Browse the repository at this point in the history
  • Loading branch information
hrach committed Oct 28, 2024
1 parent 6fb9da1 commit 1ecd1b2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"ext-ctype": "*",
"nette/caching": "~3.2 || ~3.1.3",
"nette/utils": "~3.0 || ~4.0",
"nextras/dbal": "~5.0.0@rc",
"nextras/dbal": "^v5.0.0-rc5",
"phpstan/phpdoc-parser": "2.0.x-dev"
},
"require-dev": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
SELECT "books".* FROM "books" AS "books" WHERE (("books"."id" = 1));
START TRANSACTION;
INSERT INTO "eans" ("code", "type") VALUES ('1234', 2);
SELECT CURRVAL('"eans_id_seq"');
UPDATE "books" SET "ean_id" = 1 WHERE "id" = 1;
COMMIT;
SELECT "books".* FROM "books" AS "books" WHERE (("books"."ean_id" = 1));
SELECT "eans".* FROM "eans" AS "eans" WHERE (("eans"."book" = 1));

0 comments on commit 1ecd1b2

Please sign in to comment.