* [misc] Standardize numeric default values and formatting in database schema.

This commit is contained in:
liugang
2025-12-05 09:29:28 +08:00
parent b495ddfe35
commit 8f448e4e5b
+2 -2
View File
@@ -14267,7 +14267,7 @@ CREATE TABLE IF NOT EXISTS `zt_assetlib` (
`name` varchar(255) NOT NULL DEFAULT '',
`type` varchar(255) NOT NULL DEFAULT '',
`desc` mediumtext DEFAULT NULL,
`order` smallint unsigned NOT NULL DEFAULT '0',
`order` smallint unsigned NOT NULL DEFAULT 0,
`createdBy` varchar(30) NOT NULL DEFAULT '',
`createdDate` datetime DEFAULT NULL,
`editedBy` varchar(30) NOT NULL DEFAULT '',
@@ -16357,7 +16357,7 @@ CREATE TABLE IF NOT EXISTS `zt_market` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`industry` varchar(255) NOT NULL DEFAULT '',
`scale` decimal(10, 2) NOT NULL DEFAULT '0',
`scale` decimal(10,2) NOT NULL DEFAULT 0.00,
`maturity` varchar(255) NOT NULL DEFAULT '',
`speed` varchar(255) NOT NULL DEFAULT '',
`competition` varchar(255) NOT NULL DEFAULT '',