2024-04-17 09:40:12 +02:00
|
|
|
CREATE TABLE `test` (
|
2024-04-17 10:40:55 +02:00
|
|
|
`id` bigint(20) NOT NULL,
|
|
|
|
`test_value` int(11) NOT NULL,
|
|
|
|
`test_string` varchar(255) DEFAULT NULL,
|
2024-04-17 16:22:16 +02:00
|
|
|
`starting_date` date DEFAULT NULL,
|
|
|
|
`ending_date` date DEFAULT NULL,
|
2024-04-17 10:40:55 +02:00
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci
|
|
|
|
|