Connected! Tables found: 9 Tables: admins, categories, extras, order_item_extras, order_items, orders, product_extras, products, settings SQL file size: 8344 bytes Error: SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'categories' already exists Statement: -- ============================================ -- TÓTEM DE AUTOSERVICIO - Base... Error: SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'products' already exists Statement: -- Productos CREATE TABLE products ( id INT AUTO_INCREMENT PRIMARY KEY, ... Error: SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'extras' already exists Statement: -- Extras / Adicionales CREATE TABLE extras ( id INT AUTO_INCREMENT PRIMARY ... Error: SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'product_extras' already exists Statement: -- Relación producto-extra (extras disponibles por producto) CREATE TABLE produ... Error: SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'orders' already exists Statement: -- Pedidos CREATE TABLE orders ( id INT AUTO_INCREMENT PRIMARY KEY, orde... Error: SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'order_items' already exists Statement: -- Detalles del pedido CREATE TABLE order_items ( id INT AUTO_INCREMENT PRIM... Error: SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'order_item_extras' already exists Statement: -- Extras del pedido CREATE TABLE order_item_extras ( id INT AUTO_INCREMENT ... Error: SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'admins' already exists Statement: -- Administradores CREATE TABLE admins ( id INT AUTO_INCREMENT PRIMARY KEY, ... Error: SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'settings' already exists Statement: -- Configuración del sistema CREATE TABLE settings ( id INT AUTO_INCREMENT ... Error: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '1-1' for key 'unique_product_ Statement: -- Relacionar extras con productos INSERT INTO product_extras (product_id, extra... Error: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'admin' for key 'username' Statement: -- Administrador por defecto (password: admin123) INSERT INTO admins (username, ... Error: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'business_name' for key 'setti Statement: -- Configuración por defecto INSERT INTO settings (setting_key, setting_value, ... Executed 3 statements Tables after import: 9 Tables: admins, categories, extras, order_item_extras, order_items, orders, product_extras, products, settings Admin password updated. Verified: OK