-- 0008_drop_retired_tables.sql (v0.1.0:104) -- -- ONE-OFF DESTRUCTIVE EXCEPTION to the never-hard-delete rule, explicitly approved. -- Both tables are EMPTY and fully removed from the application code: -- * lp_profiles — the legacy single-fund LP model, retired v0.1.0:78; the -- fundraising_* grid is the canonical commitment record now. -- * feature_requests — backed the in-app Feedback page, which was removed. -- -- The never-hard-delete policy STILL STANDS for all real CRM and thesis data — this -- is a deliberate, documented exception for two empty, retired tables so they don't -- linger as dead schema. init_db() no longer creates either table, and migration -- 0001's lp_profiles ALTER was removed, so a fresh DB never creates them and this -- DROP is a harmless no-op there; on the live box it removes the existing empties. DROP TABLE IF EXISTS lp_profiles; DROP TABLE IF EXISTS feature_requests;