chore: remove admin and agent pipeline remnants

This commit is contained in:
2026-04-18 18:57:50 +08:00
parent f09364ebf7
commit bc93755f87
15 changed files with 169 additions and 2731 deletions
@@ -0,0 +1,13 @@
DROP TABLE IF EXISTS project_discovery_tasks;
DO $$
BEGIN
IF EXISTS (
SELECT 1
FROM pg_type
WHERE typname = 'TaskStatus'
) THEN
DROP TYPE "TaskStatus";
END IF;
END
$$;