CREATE TABLE IF NOT EXISTS `inventory` ( `id` INT AUTO_INCREMENT PRIMARY KEY, `item_name` VARCHAR(255) NOT NULL, `quantity` INT NOT NULL DEFAULT 0, `price` DECIMAL(10, 2) NOT NULL DEFAULT 0.00, `created_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB;