From 1a6cdaa93302e567049f7719dd6edbe228c7ef42 Mon Sep 17 00:00:00 2001 From: Petro Tiurin <93913847+ptiurin@users.noreply.github.com> Date: Tue, 3 Dec 2024 09:40:59 +0000 Subject: [PATCH] tests: fix boolean check (#124) --- test/integration/v2/date.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/v2/date.test.ts b/test/integration/v2/date.test.ts index 677bd41e..0ec8b799 100644 --- a/test/integration/v2/date.test.ts +++ b/test/integration/v2/date.test.ts @@ -20,7 +20,7 @@ description TEXT NULL, pg_date pgdate NOT NULL , time_wtz timestamptz NOT NULL , time_ntz timestampntz NOT NULL , -done boolean NOT NULL default 1 +done boolean NOT NULL default true ) PRIMARY INDEX id; `;