Skip to content

Commit a9a2eb5

Browse files
committed
Fix: default word count to be 1.
1 parent d004ad9 commit a9a2eb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/main/db.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
translation TEXT,
4949
language TEXT,
5050
is_not_a_word BOOLEAN NOT NULL CHECK (is_not_a_word IN (0, 1)),
51-
count INTEGER DEFAULT 0,
51+
count INTEGER DEFAULT 1,
5252
UNIQUE(name, language)
5353
);
5454

0 commit comments

Comments
 (0)