CoolFace
Apppublic

fmatituy/selectospromanager

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
migrate_epp.cpython-313.pyc47 linesDownload Raw Back to __pycache__
1�

2x�i���V�SSKrSSKrSr\RR	\5(dSr\R3"\5r\R5r\RS5 \RS5 \RS5 \R5 \R5 \"S5 g)�Nzpro_manager.dbz../pro_manager.dba�4    CREATE TABLE IF NOT EXISTS sst_epp_catalogo (5        id INTEGER PRIMARY KEY AUTOINCREMENT,6        nombre TEXT NOT NULL,7        categoria TEXT, -- Cabeza, Manos, Alturas, etc.8        vida_util_meses INTEGER DEFAULT 12,9        descripcion TEXT,10        stock_minimo INTEGER DEFAULT 0,11        stock_actual INTEGER DEFAULT 0,12        ubicacion TEXT,13        fecha_ingreso TEXT14    )15a�16    CREATE TABLE IF NOT EXISTS sst_epp_entregas (17        id INTEGER PRIMARY KEY AUTOINCREMENT,18        trabajador_id INTEGER NOT NULL,19        epp_id INTEGER NOT NULL,20        fecha_entrega TEXT NOT NULL,21        cantidad INTEGER DEFAULT 1,22        estado_epp TEXT DEFAULT 'Nuevo', -- Nuevo, Usado23        fecha_vencimiento TEXT,24        firma_digital TEXT, -- Base64 o URL25        foto_url TEXT,26        observacion TEXT,27        responsable_id INTEGER,28        FOREIGN KEY (trabajador_id) REFERENCES usuarios (id),29        FOREIGN KEY (epp_id) REFERENCES sst_epp_catalogo (id),30        FOREIGN KEY (responsable_id) REFERENCES usuarios (id)31    )32u�33    CREATE TABLE IF NOT EXISTS sst_epp_reposiciones (34        id INTEGER PRIMARY KEY AUTOINCREMENT,35        trabajador_id INTEGER NOT NULL,36        epp_id INTEGER NOT NULL,37        motivo TEXT, -- Daño, Pérdida, Vencimiento38        fecha_solicitud TEXT,39        estado TEXT DEFAULT 'Pendiente', -- Pendiente, Aprobado, Entregado40        entrega_id_original INTEGER,41        FOREIGN KEY (trabajador_id) REFERENCES usuarios (id),42        FOREIGN KEY (epp_id) REFERENCES sst_epp_catalogo (id)43    )44u/Tablas de Gestión de EPP creadas exitosamente.)
�sqlite3�os�db_path�path�exists�connect�conn�cursor�c�execute�commit�close�print���.\src\database\migrate_epp.py�<module>rs����	�45��	�w�w�~�~�g���!�G����w����K�K�M���	�	����	�	���(�	�	������
��46�47���7�8r