This commit is contained in:
drackxuskrax
2026-07-21 16:53:38 -05:00
commit 69cc215954
12 changed files with 3478 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
-- Table structure for Claro Cases requests (SQLite)
CREATE TABLE IF NOT EXISTS requests (
id INTEGER PRIMARY KEY AUTOINCREMENT,
title TEXT NOT NULL,
description TEXT,
status TEXT DEFAULT 'Pending',
external_id TEXT,
cedula TEXT,
tipo_solicitud TEXT,
payload TEXT,
handling_time INTEGER DEFAULT 0,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
);