From a38ce269cc9283556621b5447eb3a0caf697eae9 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Tue, 20 Jan 2026 21:07:36 -1000 Subject: Add in-app bug reporting feature - New bugs table in SQLite (migration 005) - Store methods for saving and retrieving bugs - Handlers for GET/POST /bugs - Floating bug button with modal UI - Shows recent bug reports in modal Co-Authored-By: Claude Opus 4.5 --- migrations/005_add_bugs.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 migrations/005_add_bugs.sql (limited to 'migrations/005_add_bugs.sql') diff --git a/migrations/005_add_bugs.sql b/migrations/005_add_bugs.sql new file mode 100644 index 0000000..999b1f2 --- /dev/null +++ b/migrations/005_add_bugs.sql @@ -0,0 +1,6 @@ +-- Bug tracking table +CREATE TABLE IF NOT EXISTS bugs ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + description TEXT NOT NULL, + created_at DATETIME DEFAULT CURRENT_TIMESTAMP +); -- cgit v1.2.3