This commit is contained in:
2026-05-11 20:22:04 +02:00
parent 2b4d843ae0
commit 0578bfc2ae
10 changed files with 591 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
SET NAMES utf8mb4;
UPDATE orders SET total_with_tax = 89.00, total_paid = 89.00 WHERE id = 1009;
SELECT id, internal_order_number, total_with_tax, total_paid FROM orders WHERE id = 1009;