You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
-- 字段新增 ( 表名, 字段名, 字段类型, 修改方式( 1: 新增, 2: 修改, 3: 删除)
CALL Pro_Temp_ColumnWork ( ' basic_export_status ' , ' receiveStatus ' , ' varchar(255) ' , 1 ) ;
CALL Pro_Temp_ColumnWork ( ' io_order ' , ' wzUploadStatus ' , ' varchar(255) ' , 1 ) ;
CALL Pro_Temp_ColumnWork ( ' io_order ' , ' wzUploadResult ' , ' varchar(255) ' , 1 ) ;
INSERT ignore INTO scheduled ( id , cronName , cron , customerId , remark )
VALUES
( 16 , ' ScheduledDeletion ' , ' 0 0 2 1/1 * ? ' , NULL , ' 删除30天数据 ' ) ;
INSERT ignore INTO system_param_config ( id , parentId , paramName , paramKey , paramValue , paramStatus , paramType , paramExplain )
VALUES
( 20009 , 0 , ' 删除30天数据 ' , ' ScheduledDeletion ' , ' 1 ' , 1 , 0 , ' 1:是, 0: 否 ' ) ;
-- 创建表时必须 create table if not exists 表名