feat(F-185): completed feature
This commit is contained in:
@@ -43,7 +43,12 @@ describe.skipIf(!hasDb)('F-145 reporting payment lines (real PostgreSQL)', () =>
|
||||
});
|
||||
|
||||
beforeEach(async () => {
|
||||
// Ensure table exists (migrations already applied).
|
||||
// Ensure FK fixtures and table exist (migrations already applied).
|
||||
await pool.query(
|
||||
`INSERT INTO orders_orders (id, source, user_id)
|
||||
VALUES ('00000000-0000-0000-0000-000000000002', 'pos', NULL)
|
||||
ON CONFLICT (id) DO NOTHING`,
|
||||
);
|
||||
await pool.query(`
|
||||
CREATE TABLE IF NOT EXISTS reporting_payment_lines (
|
||||
id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
|
||||
Reference in New Issue
Block a user