Skip to content

Commit

Permalink
fixed #2534
Browse files Browse the repository at this point in the history
  • Loading branch information
vertigo17 committed Dec 15, 2024
1 parent a1df755 commit 09b499a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/src/main/resources/database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4326,7 +4326,7 @@ ALTER TABLE `tag` CHANGE COLUMN `id` `id` INT(11) NOT NULL AUTO_INCREMENT ;
ALTER TABLE `tag` DROP INDEX `IX_tag_01` , ADD UNIQUE INDEX `IX_tag_01` (`Tag` ASC);

-- 1213
INSERT INTO `tag` (`Tag`) (select distinct tag from testcaseexecution a where tag != ') ON DUPLICATE KEY UPDATE Tag=a.tag;
INSERT INTO `tag` (`Tag`) (select distinct tag from testcaseexecution a where tag != '') ON DUPLICATE KEY UPDATE Tag=a.tag;

-- 1214
INSERT INTO `tag` (`Tag`) (select distinct tag from testcaseexecutionqueue a where tag != '') ON DUPLICATE KEY UPDATE Tag=a.tag;
Expand Down Expand Up @@ -6587,3 +6587,5 @@ UPDATE testcase SET `UsrModif`=REPLACE(REPLACE(`UsrModif`, '@', '@'), '%40',
-- 1873
UPDATE testcasecountryproperties SET `Type` = 'getFromHtml' WHERE `Type` = 'getFromHTML';

-- 1874
UPDATE robot SET lbexemethod='BYRANKING' WHERE lbexemethod='';

0 comments on commit 09b499a

Please sign in to comment.