feat: refs #6321 defaultAlertLevelCode
gitea/salix/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Javier Segarra 2025-02-06 01:06:02 +01:00
parent 1f6f7b9975
commit b2cbded2dc
2 changed files with 4 additions and 0 deletions

View File

@ -1,2 +1,3 @@
ALTER TABLE vn.ticketConfig ADD lackAlertPrice int(11) DEFAULT 30 NOT NULL COMMENT 'Value to alert when item proposal exceed price';
ALTER TABLE vn.ticketConfig ADD lackDefaultAlertLevelCode varchar(45) DEFAULT 'FREE' NOT NULL COMMENT 'Default alertLevelCode to retrieve tickets with negatives';
ALTER TABLE vn.ticketConfig ADD lackScopeDays int(11) DEFAULT 2 NOT NULL COMMENT 'Number of days to look back for ticket with negatives';

View File

@ -30,6 +30,9 @@
"lackAlertPrice": {
"type": "number"
},
"lackDefaultAlertLevelCode": {
"type": "string"
},
"lackScopeDays": {
"type": "number"
}