Index: src/config/database.js
===================================================================
--- src/config/database.js	(revision f278df902e5fb5df80f66e65de75b7527a563eba)
+++ src/config/database.js	(revision 78b6d8a72b391c1960a8488dc735fb03495bc209)
@@ -400,7 +400,8 @@
     CREATE INDEX IF NOT EXISTS idx_ap_delivery_due ON ap_delivery(next_at);
   `);
-  // Auto-boost a followed account's posts ("feature an artist"): their new
-  // top-level posts get re-Announced to our followers automatically.
+  // "Feature" a followed account: its posts show in the local Cirkel.
   ensureColumn('ap_following', 'auto_boost', 'INTEGER DEFAULT 0');
+  // A timeline post you boosted (🔁) — also shown in the Cirkel (mixed by date).
+  ensureColumn('ap_timeline', 'boosted', 'INTEGER DEFAULT 0');
 }
 
