fix(streaks): incorrect calculation logic

This commit is contained in:
Evan Reichard 2024-12-01 20:22:23 -05:00
parent f6dd8cee50
commit f8cefcb640

View File

@ -147,6 +147,7 @@ CREATE TABLE IF NOT EXISTS document_user_statistics (
);
-- User Streaks Table
DROP TABLE IF EXISTS user_streaks;
CREATE TABLE IF NOT EXISTS user_streaks (
user_id TEXT NOT NULL,
window TEXT NOT NULL,