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.
|
|
|
|
|
|
|
|
|
-- 字段新增 (表名,字段名,字段类型,修改方式(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 sys_scheduled (`cronName`, `cron`, `customerId`, `remark`) VALUES ('downloadSpDataTask', '0 0/1 * * * ?', NULL, '立即下载自助平台数据');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- 创建表时必须 create table if not exists 表名
|
|
|
|
|
|
|
|
|
|
-- 删除自助平台表
|
|
|
|
|
drop table if exists auth_platform;
|
|
|
|
|
-- 删除医院客户和自助平台关联表
|
|
|
|
|
drop table if exists io_unit_maintain_platform;
|
|
|
|
|
|