diff options
Diffstat (limited to 'internal/store/sqlite_test.go')
| -rw-r--r-- | internal/store/sqlite_test.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/internal/store/sqlite_test.go b/internal/store/sqlite_test.go index 3c5a7b6..345b40e 100644 --- a/internal/store/sqlite_test.go +++ b/internal/store/sqlite_test.go @@ -173,12 +173,19 @@ func setupTestStoreWithNativeTasks(t *testing.T) *Store { content TEXT NOT NULL, description TEXT DEFAULT '', project_name TEXT DEFAULT '', + project_id TEXT DEFAULT '', due_date DATETIME, priority INTEGER DEFAULT 1, completed BOOLEAN DEFAULT 0, labels TEXT DEFAULT '[]', created_at DATETIME DEFAULT CURRENT_TIMESTAMP, - updated_at DATETIME DEFAULT CURRENT_TIMESTAMP + updated_at DATETIME DEFAULT CURRENT_TIMESTAMP, + recurrence_freq TEXT DEFAULT '', + recurrence_interval INTEGER DEFAULT 1, + recurrence_weekdays TEXT DEFAULT '', + recurrence_series_id TEXT DEFAULT '', + next_occurrence_override TEXT DEFAULT '', + estimated_minutes INTEGER DEFAULT 0 ); ` if _, err := db.Exec(schema); err != nil { |
