chore: set innodb_lock_wait_timeout default
This commit is contained in:
parent
50a4a80884
commit
1a41bcae3f
|
@ -13,3 +13,6 @@ INSERT INTO system_parameter (param_key, param_value, type) VALUES ('upload.file
|
|||
|
||||
-- 初次安装初始化用户缺少cft_token字段值
|
||||
UPDATE user SET cft_token = '/sU3a0dtnm5Ykmyj8LfCjA==' WHERE id = 'admin';
|
||||
|
||||
-- set innodb lock wait timeout to default
|
||||
SET SESSION innodb_lock_wait_timeout = DEFAULT;
|
|
@ -8,3 +8,6 @@ UPDATE `schedule` set num = UUID_SHORT() % 10000000;
|
|||
-- 定时任务历史数据name处理
|
||||
update `schedule` set name = '定时同步缺陷' where name = 'Bug Sync Job';
|
||||
update `schedule` set name = '定时同步需求' where name = 'Demand Sync Job';
|
||||
|
||||
-- set innodb lock wait timeout to default
|
||||
SET SESSION innodb_lock_wait_timeout = DEFAULT;
|
Loading…
Reference in New Issue