Skip to content

Commit

Permalink
Merge origin/master
Browse files Browse the repository at this point in the history
Conflicts:
	source/src/main/resources/database.sql
  • Loading branch information
vertigo17 committed Jul 23, 2024
2 parents 3690313 + 9f5c84e commit ca5d33f
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions source/src/main/resources/database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6428,11 +6428,16 @@ ALTER TABLE testcasedep
INSERT INTO `parameter` (`system`, `param`, `value`, `description`)
VALUES ('', 'cerberus_notification_tagexecutionend_googlechat_maxexelines', '20', 'Maximum number of lines of execution displayed inside the end of campaign execution googlechat notification (default to 20).');

-- 1807-1809
-- 1807
ALTER TABLE `tagstatistic` MODIFY `Campaign` VARCHAR(200);
ALTER TABLE `tagstatistic` ADD CONSTRAINT `fk_campaign_01` FOREIGN KEY (`Campaign`) REFERENCES `campaign` (`Campaign`) ON UPDATE CASCADE ON DELETE SET NULL;
ALTER TABLE `tagstatistic` ADD CONSTRAINT `fk_tag_01` FOREIGN KEY (`Tag`) REFERENCES `tag` (`Tag`) ON UPDATE CASCADE ON DELETE CASCADE;

-- 1810-1811
-- 1808-1811
ALTER TABLE `tagstatistic` DROP INDEX `tag_stat_unique`;
ALTER TABLE `tagstatistic` ADD CONSTRAINT `IX_tagstatistic_01` UNIQUE (`Tag`, `Country`, `Environment`);
ALTER TABLE `tagstatistic` ADD CONSTRAINT `FK_tagstatistic_01` FOREIGN KEY (`Campaign`) REFERENCES `campaign` (`Campaign`) ON UPDATE CASCADE ON DELETE SET NULL;
ALTER TABLE `tagstatistic` ADD CONSTRAINT `FK_tagstatistic_02` FOREIGN KEY (`Tag`) REFERENCES `tag` (`Tag`) ON UPDATE CASCADE ON DELETE CASCADE;

-- 1812-1813
ALTER TABLE tag ADD FalseNegative BOOLEAN DEFAULT false NULL AFTER CIResult;
ALTER TABLE testcaseexecution ADD FalseNegative BOOLEAN DEFAULT false NULL AFTER ControlStatus;

0 comments on commit ca5d33f

Please sign in to comment.