fix: 去掉创建表中的 TEMPORARY, 避免在某些RDS中报错的问题

This commit is contained in:
CaptainB 2022-04-26 11:41:31 +08:00 committed by 刘瑞斌
parent 126aadffd3
commit 5db3e0780f
1 changed files with 1 additions and 1 deletions

View File

@ -408,7 +408,7 @@ DROP PROCEDURE IF EXISTS issue_template_ws;
DROP TABLE IF EXISTS custom_field_template_bak;
CREATE TEMPORARY TABLE custom_field_template_bak LIKE custom_field_template;
CREATE TABLE custom_field_template_bak LIKE custom_field_template;
INSERT INTO custom_field_template_bak
SELECT *
FROM custom_field_template;