{"table_name":"erm_orders","full_table_name":"wp_erm_orders","description":"Stores order records and related transaction data.","detection_method":"static","confidence":"medium","create_sql":"CREATE TABLE IF NOT EXISTS `wp_erm_orders` ( id INT PRIMARY KEY AUTO_INCREMENT, branch_id INT DEFAULT NULL, customer_id INT DEFAULT NULL, table_id INT DEFAULT NULL, customer_name VARCHAR(255) NOT NULL, phone VARCHAR(20) NOT NULL, address TEXT DEFAULT NULL, total_price DECIMAL(10,2) NOT NULL, discount_id INT DEFAULT NULL, tax_amount DECIMAL(10,2) DEFAULT 0.00, status ENUM('pending', 'completed', 'cancelled') NOT NULL DEFAULT 'pending', order_type ENUM('dine-in', 'takeaway', 'delivery') NOT NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) $charset_collate;\"; dbDelta($sql);","columns":[{"name":"id","type":"INT","nullable":true,"primary_key":true},{"name":"branch_id","type":"INT","nullable":true,"primary_key":false},{"name":"customer_id","type":"INT","nullable":true,"primary_key":false},{"name":"table_id","type":"INT","nullable":true,"primary_key":false},{"name":"customer_name","type":"VARCHAR(255)","nullable":false,"primary_key":false},{"name":"phone","type":"VARCHAR(20)","nullable":false,"primary_key":false},{"name":"address","type":"TEXT","nullable":true,"primary_key":false},{"name":"total_price","type":"DECIMAL(10,2)","nullable":false,"primary_key":false},{"name":"discount_id","type":"INT","nullable":true,"primary_key":false},{"name":"tax_amount","type":"DECIMAL(10,2)","nullable":true,"primary_key":false},{"name":"status","type":"ENUM('pending', 'completed', 'cancelled')","nullable":false,"primary_key":false},{"name":"order_type","type":"ENUM('dine-in', 'takeaway', 'delivery')","nullable":false,"primary_key":false},{"name":"created_at","type":"DATETIME","nullable":true,"primary_key":false},{"name":"updated_at","type":"TIMESTAMP","nullable":true,"primary_key":false}],"plugin":{"slug":"easy-restaurant-manager","name":"Easy Restaurant Manager","active_installs":0,"version":"1.1.0","wp_org_url":"https://wordpress.org/plugins/easy-restaurant-manager/"}}