Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 18 additions & 14 deletions src/main/resources/config/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,6 @@ security-analysis:
highBound: 75
- nominalV: 90
lowBound: 75
highBound: 120
- nominalV: 150
lowBound: 120
highBound: 180
- nominalV: 225
lowBound: 180
Expand All @@ -70,23 +67,30 @@ security-analysis:
lowBound: 300
highBound: 500
limitDurations:
- lowBound: 600
lowClosed: false
- lowBound: 1200
lowClosed: true
highBound: ~
highClosed: false
- lowBound: 600
lowClosed: true
highBound: 1200
highClosed: false
- lowBound: 300
lowClosed: true
highBound: 600
highClosed: true
- lowBound: 0
highClosed: false
- lowBound: 60
lowClosed: true
highBound: 300
highClosed: false
- lowBound: 0
lowClosed: true
highBound: 60
highClosed: false
defaultValues:
- [ 1, 1, 1, 1 ]
- [ 1, 1, 1, 1 ]
- [ 1, 1, 1, 1 ]
- [ 1, 1, 1, 1 ]
- [ 1, 1, 1, 1 ]
- [ 1, 1, 1, 1 ]
- [ 1, 1, 1, 1 ]
- [ 1, 1, 1, 1, 1, 1 ]
- [ 1, 1, 1, 1, 1, 1 ]
- [ 1, 1, 1, 1, 1, 1 ]
- [ 1, 1, 1, 1, 1, 1 ]
- [ 1, 1, 1, 1, 1, 1 ]
- [ 1, 1, 1, 1, 1, 1 ]
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:pro="http://www.liquibase.org/xml/ns/pro" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-latest.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd">
<changeSet author="jamalk (generated)" id="1734002324759-1">
<sql dbms="postgresql">
TRUNCATE TABLE limit_reduction_entity CASCADE;
</sql>
</changeSet>
</databaseChangeLog>
4 changes: 4 additions & 0 deletions src/main/resources/db/changelog/db.changelog-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,7 @@ databaseChangeLog:
- include:
file: changesets/changelog_20240705T122208Z.xml
relativeToChangelogFile: true
- include:
file: changesets/changelog_20241212T111835Z.xml
relativeToChangelogFile: true

Loading