[
  {
    "type": "create_table",
    "description": "Create cashActivity table for cash management tracking",
    "database": "{{store}}",
    "check_query": "SHOW TABLES LIKE 'cashActivity'",
    "sql": "CREATE TABLE `cashActivity` (`id` bigint(20) NOT NULL AUTO_INCREMENT, `timeStamp` datetime DEFAULT NULL, `userId` varchar(20) DEFAULT NULL, `transType` varchar(10) DEFAULT NULL, `register` varchar(10) DEFAULT NULL, `pennies` int(11) DEFAULT NULL, `pennyRolls` int(11) DEFAULT NULL, `nickels` int(11) DEFAULT NULL, `nickelRolls` int(11) DEFAULT NULL, `dimes` int(11) DEFAULT NULL, `dimeRolls` int(11) DEFAULT NULL, `quarters` int(11) DEFAULT NULL, `quarterRolls` int(11) DEFAULT NULL, `ones` int(11) DEFAULT NULL, `oneRolls` int(11) DEFAULT NULL, `fives` int(11) DEFAULT NULL, `fiveRolls` int(11) DEFAULT NULL, `tens` int(11) DEFAULT NULL, `tenRolls` int(11) DEFAULT NULL, `twenties` int(11) DEFAULT NULL, `twentyRolls` int(11) DEFAULT NULL, `fifties` int(11) DEFAULT NULL, `fiftyRolls` int(11) DEFAULT NULL, `hundreds` int(11) DEFAULT NULL, `hundredRolls` int(11) DEFAULT NULL, `total` decimal(10,2) DEFAULT NULL, `createdAt` timestamp NULL DEFAULT current_timestamp(), `updatedAt` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `cashPaidIn` decimal(10,2) DEFAULT NULL, `cashPaidOut` decimal(10,2) DEFAULT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"
  }
]
