RandomDBGenerator/pythonProject/schema.sql
Sebastian Böckelmann 805d72a593 Generate pairs of time
2024-04-17 16:41:25 +02:00

11 lines
321 B
SQL

CREATE TABLE `test` (
`id` bigint(20) NOT NULL,
`test_value` int(11) NOT NULL,
`test_string` varchar(255) DEFAULT NULL,
`local_date` date DEFAULT NULL,
`starting_time` time DEFAULT NULL,
`ending_time` time DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci