10 lines
322 B
MySQL
10 lines
322 B
MySQL
|
|
-- Migration: 001_initial_schema (down)
|
||
|
|
-- Description: Reverts the core Control Center database schema.
|
||
|
|
|
||
|
|
-- Drop in reverse dependency order to avoid FK conflicts
|
||
|
|
DROP TABLE IF EXISTS agent_events;
|
||
|
|
DROP TABLE IF EXISTS task_logs;
|
||
|
|
DROP TABLE IF EXISTS sessions;
|
||
|
|
DROP TABLE IF EXISTS projects;
|
||
|
|
DROP TABLE IF EXISTS agents;
|