RandomDBGenerator/pythonProject/schema.sql
2024-04-17 10:18:01 +02:00

5 lines
236 B
SQL

CREATE TABLE `test` (
`id` bigint(20) NOT NULL,
`test_value` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci