{
  "query": "CREATE TABLE IF NOT EXISTS `clients` (`id` int AUTO_INCREMENT NOT NULL, `firstName` varchar(100) NOT NULL, `lastName` varchar(100) NOT NULL, `email` varchar(320) NOT NULL, `phone` varchar(30), `nationality` varchar(50), `notes` text, `createdAt` timestamp NOT NULL DEFAULT (now()), `updatedAt` timestamp NOT NULL DEFAULT (now()) ON UPDATE CURRENT_TIMESTAMP, CONSTRAINT `clients_id` PRIMARY KEY(`id`), CONSTRAINT `clients_email_unique` UNIQUE(`email`)); CREATE TABLE IF NOT EXISTS `contact_messages` (`id` int AUTO_INCREMENT NOT NULL, `name` varchar(200) NOT NULL, `email` varchar(320) NOT NULL, `phone` varchar(30), `subject` varchar(200), `message` text NOT NULL, `isRead` boolean NOT NULL DEFAULT false, `createdAt` timestamp NOT NULL DEFAULT (now()), CONSTRAINT `contact_messages_id` PRIMARY KEY(`id`)); CREATE TABLE IF NOT EXISTS `rooms` (`id` int AUTO_INCREMENT NOT NULL, `name` varchar(100) NOT NULL, `type` enum('doppia','tripla','quadrupla') NOT NULL, `capacity` int NOT NULL, `pricePerNight` decimal(10,2) NOT NULL, `description` text, `descriptionEn` text, `descriptionFr` text, `descriptionDe` text, `amenities` text, `photos` text, `isActive` boolean NOT NULL DEFAULT true, `createdAt` timestamp NOT NULL DEFAULT (now()), CONSTRAINT `rooms_id` PRIMARY KEY(`id`))",
  "command": "mysql --batch --raw --column-names --default-character-set=utf8mb4 --host gateway02.us-east-1.prod.aws.tidbcloud.com --port 4000 --user 36o4V54CBLBAd6v.fabfd647c362 --database Av9WJ4mhVY4Z89SDVK3Qfi --execute CREATE TABLE IF NOT EXISTS `clients` (`id` int AUTO_INCREMENT NOT NULL, `firstName` varchar(100) NOT NULL, `lastName` varchar(100) NOT NULL, `email` varchar(320) NOT NULL, `phone` varchar(30), `nationality` varchar(50), `notes` text, `createdAt` timestamp NOT NULL DEFAULT (now()), `updatedAt` timestamp NOT NULL DEFAULT (now()) ON UPDATE CURRENT_TIMESTAMP, CONSTRAINT `clients_id` PRIMARY KEY(`id`), CONSTRAINT `clients_email_unique` UNIQUE(`email`)); CREATE TABLE IF NOT EXISTS `contact_messages` (`id` int AUTO_INCREMENT NOT NULL, `name` varchar(200) NOT NULL, `email` varchar(320) NOT NULL, `phone` varchar(30), `subject` varchar(200), `message` text NOT NULL, `isRead` boolean NOT NULL DEFAULT false, `createdAt` timestamp NOT NULL DEFAULT (now()), CONSTRAINT `contact_messages_id` PRIMARY KEY(`id`)); CREATE TABLE IF NOT EXISTS `rooms` (`id` int AUTO_INCREMENT NOT NULL, `name` varchar(100) NOT NULL, `type` enum('doppia','tripla','quadrupla') NOT NULL, `capacity` int NOT NULL, `pricePerNight` decimal(10,2) NOT NULL, `description` text, `descriptionEn` text, `descriptionFr` text, `descriptionDe` text, `amenities` text, `photos` text, `isActive` boolean NOT NULL DEFAULT true, `createdAt` timestamp NOT NULL DEFAULT (now()), CONSTRAINT `rooms_id` PRIMARY KEY(`id`))",
  "rows": [],
  "messages": [],
  "stdout": "",
  "stderr": "",
  "execution_time_ms": 239
}