RandomDBGenerator/pythonProject/schema.sql

11 lines
373 B
MySQL
Raw Normal View History

CREATE TABLE `test` (
`id` bigint(20) NOT NULL,
`test_value` int(11) NOT NULL,
2024-04-17 16:35:11 +02:00
`local_date` date DEFAULT NULL,
2024-04-17 16:41:25 +02:00
`starting_time` time DEFAULT NULL,
`ending_time` time DEFAULT NULL,
`starting_date_time` datetime(6) DEFAULT NULL,
`ending_date_time` datetime(6) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci