🚩 Private development - version retention only ✅ Complete web dashboard (React + TypeScript + TailwindCSS) ✅ Production-ready server backend (Go + Gin + PostgreSQL) ✅ Linux agent with APT + Docker scanning + local CLI tools ✅ JWT authentication and REST API ✅ Update discovery and approval workflow 🚧 Status: Alpha software - active development 📦 Purpose: Version retention during development ⚠️ Not for public use or deployment
12 lines
359 B
SQL
12 lines
359 B
SQL
-- Drop tables in reverse order (respecting foreign key constraints)
|
|
DROP TABLE IF EXISTS agent_commands;
|
|
DROP TABLE IF EXISTS users;
|
|
DROP TABLE IF EXISTS agent_tags;
|
|
DROP TABLE IF EXISTS update_logs;
|
|
DROP TABLE IF EXISTS update_packages;
|
|
DROP TABLE IF EXISTS agent_specs;
|
|
DROP TABLE IF EXISTS agents;
|
|
|
|
-- Drop extension
|
|
DROP EXTENSION IF EXISTS "uuid-ossp";
|