From 22702342bcc0657cbb10de01d55080f66ea72a8c Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sat, 25 Feb 2023 14:16:05 -0800 Subject: [PATCH] Fix trailing comma in constants.DB_INIT. --- etiquette/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etiquette/constants.py b/etiquette/constants.py index cce7352..2b38f3c 100644 --- a/etiquette/constants.py +++ b/etiquette/constants.py @@ -198,7 +198,7 @@ CREATE INDEX IF NOT EXISTS index_tag_group_rel_memberid on tag_group_rel(memberi CREATE TABLE IF NOT EXISTS tag_synonyms( name TEXT PRIMARY KEY NOT NULL, mastername TEXT NOT NULL, - created INT, + created INT ); CREATE INDEX IF NOT EXISTS index_tag_synonyms_name on tag_synonyms(name); CREATE INDEX IF NOT EXISTS index_tag_synonyms_mastername on tag_synonyms(mastername);