Index: src/services/NotificationService.js
===================================================================
--- src/services/NotificationService.js	(revision c9c6a2d6cf1cf1611a79c699dd70c435bda3c203)
+++ src/services/NotificationService.js	(revision 9a34d316167a02b00b2db89b9a8083abe4cbef39)
@@ -13,5 +13,5 @@
   try {
     db.prepare(`
-      INSERT INTO notifications (id, user_id, type, actor_id, actor_name, post_slug, post_title, url, read)
+      INSERT INTO user_notifications (id, user_id, type, actor_id, actor_name, post_slug, post_title, url, read)
       VALUES (?, ?, ?, ?, ?, ?, ?, ?, 0)
     `).run(randomUUID(), userId, type, actorId || null, actorName || null, postSlug || null, postTitle || null, url || null);
@@ -21,5 +21,5 @@
 export function unreadCount(userId) {
   if (!userId) return 0;
-  try { return db.prepare('SELECT COUNT(*) AS c FROM notifications WHERE user_id = ? AND read = 0').get(userId).c; }
+  try { return db.prepare('SELECT COUNT(*) AS c FROM user_notifications WHERE user_id = ? AND read = 0').get(userId).c; }
   catch { return 0; }
 }
@@ -27,5 +27,5 @@
 export function list(userId, limit = 50) {
   if (!userId) return [];
-  try { return db.prepare('SELECT * FROM notifications WHERE user_id = ? ORDER BY created_at DESC LIMIT ?').all(userId, limit); }
+  try { return db.prepare('SELECT * FROM user_notifications WHERE user_id = ? ORDER BY created_at DESC LIMIT ?').all(userId, limit); }
   catch { return []; }
 }
@@ -33,5 +33,5 @@
 export function markAllRead(userId) {
   if (!userId) return;
-  try { db.prepare('UPDATE notifications SET read = 1 WHERE user_id = ? AND read = 0').run(userId); } catch { /* noop */ }
+  try { db.prepare('UPDATE user_notifications SET read = 1 WHERE user_id = ? AND read = 0').run(userId); } catch { /* noop */ }
 }
 
