From 875a298f9abdd2dbe4fd24763abf9006a7ec2e76 Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Wed, 29 Oct 2025 11:55:49 +0100 Subject: [PATCH] Remove AI summaries and semantic searches We were not using either. We can restore if we revisit. --- db/migrate/20251029104115_drop_ai_tables.rb | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 db/migrate/20251029104115_drop_ai_tables.rb diff --git a/db/migrate/20251029104115_drop_ai_tables.rb b/db/migrate/20251029104115_drop_ai_tables.rb new file mode 100644 index 000000000..4f609180a --- /dev/null +++ b/db/migrate/20251029104115_drop_ai_tables.rb @@ -0,0 +1,7 @@ +class DropAiTables < ActiveRecord::Migration[8.2] + def change + drop_table :user_weekly_summaries + drop_table :period_summaries + drop_table :search_embeddings + end +end