Commit 21f6c4c37d1175297f1b6c7c29a770e5fabffc98

Authored by 李星
1 parent 893ae265

打字机效果

Showing 1 changed file with 22 additions and 1 deletions
database/sql_log.sql
@@ -3209,4 +3209,25 @@ update zygj_solution_term set end_time = '2019-07-31 10:21:56',weeks = 27 @@ -3209,4 +3209,25 @@ update zygj_solution_term set end_time = '2019-07-31 10:21:56',weeks = 27
3209 where delete_flag = 1 and implement_term_id = 13 and date(start_time) = '2019-02-01'; 3209 where delete_flag = 1 and implement_term_id = 13 and date(start_time) = '2019-02-01';
3210 -- ---------------------------- 3210 -- ----------------------------
3211 -- 2017-09-21 罗銅 脚本版本 201709221444 END 3211 -- 2017-09-21 罗銅 脚本版本 201709221444 END
3212 --- ----------------------------  
3213 \ No newline at end of file 3212 \ No newline at end of file
  3213 +
  3214 +
  3215 +-- ----------------------------
  3216 +-- 2017-09-22
  3217 +-- 李星
  3218 +-- 脚本版本 201709221708
  3219 +-- 涉及功能 慧科FIU打字机效果
  3220 +-- 执行环境 予发布和灰度
  3221 +-- START
  3222 +-- ----------------------------
  3223 +drop table if exists `type_write`
  3224 +CREATE TABLE `gxb_core`.`type_write` (
  3225 + `type_write_id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  3226 + `uuid` varchar(50) NOT NULL,
  3227 + `content` mediumtext COMMENT '内容',
  3228 + `author` varchar(100) COMMENT '发布者',
  3229 + `created_at` datetime COMMENT '创建时间',
  3230 + PRIMARY KEY (`type_write_id`)
  3231 +) COMMENT='';
  3232 +-- ----------------------------
  3233 +-- 2017-09-22 李星 脚本版本 201709221708 END
  3234 +