CHG SQL style for creating the table

This commit is contained in:
2023-10-04 20:55:41 +02:00
parent d9dcfeea3a
commit 618a995a94
3 changed files with 10 additions and 3 deletions

View File

@ -6,7 +6,7 @@
-- @since 0.0.2
DROP TABLE IF EXISTS `#__depot`;
CREATE TABLE `#__depot`(
CREATE TABLE `#__depot` (
`id` SERIAL,
`component_name` VARCHAR(1024) CHARACTER SET ascii COLLATE ascii_general_ci NULL DEFAULT NULL
COMMENT 'unique component name (ASCII characters only)',