From b7e1f81a9d43efc40f493977b0372e8e7d879cf8 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sun, 13 Nov 2022 10:41:12 -0800 Subject: [PATCH] Use boolean in sql declaration. --- bringrss/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bringrss/constants.py b/bringrss/constants.py index da2ffe3..f85510b 100644 --- a/bringrss/constants.py +++ b/bringrss/constants.py @@ -13,13 +13,13 @@ CREATE TABLE IF NOT EXISTS feeds( title TEXT, description TEXT, created INT, - refresh_with_others INT NOT NULL, + refresh_with_others BOOLEAN NOT NULL, last_refresh INT NOT NULL, last_refresh_attempt INT NOT NULL, last_refresh_error TEXT, autorefresh_interval INT NOT NULL, http_headers TEXT, - isolate_guids INT NOT NULL, + isolate_guids BOOLEAN NOT NULL, icon BLOB, ui_order_rank INT );