Browse Source

脚本总结

gaodm 5 years ago
parent
commit
57e249a13c
1 changed files with 3 additions and 2 deletions
  1. 3 2
      docs/029.20200109模板新需求/icss.sql

+ 3 - 2
docs/029.20200109模板新需求/icss.sql

@@ -1,5 +1,8 @@
 use `sys-icss`;
 
+ALTER TABLE `icss_template_info`
+ADD COLUMN `spell` varchar(100) DEFAULT NULL COMMENT '拼音' AFTER `name`;
+
 DROP TABLE IF EXISTS `icss_template_folder`;
 CREATE TABLE `icss_template_folder` (
   `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
@@ -47,21 +50,3 @@ CREATE TABLE `icss_template_quote` (
   `remark` varchar(255) DEFAULT NULL COMMENT '备注',
   PRIMARY KEY (`id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='模板引用表';
-
-