Fix spacing issue.

This commit is contained in:
Brent Simmons 2025-01-19 22:06:21 -08:00
parent 80328ff4d4
commit 081bab1249

View File

@ -84,7 +84,7 @@ private extension SyncDatabase {
static let tableCreationStatements = """
CREATE TABLE if not EXISTS syncStatus (articleID TEXT NOT NULL, key TEXT NOT NULL, flag BOOL NOT NULL DEFAULT 0, selected BOOL NOT NULL DEFAULT 0, PRIMARY KEY (articleID, key));
CREATE INDEX if not EXISTS syncStatus_selected_index on syncStatus (selected);
"""
}