Skip to content

Commit 9d8e18d

Browse files
committed
Add changeSet for H2 compatibility
Signed-off-by: Ayoub LABIDI <[email protected]>
1 parent ddd23cf commit 9d8e18d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/main/resources/db/changelog/changesets/changelog_20250807T090300Z.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@
88
</sql>
99
</changeSet>
1010

11-
<changeSet id="insert-new-limit-reduction-entity" author="labidiayo">
11+
<changeSet id="insert-new-limit-reduction-entity-h2" author="labidiayo" dbms="h2">
12+
<sql>
13+
INSERT INTO limit_reduction_entity (id, security_analysis_parameters_id, index)
14+
SELECT RANDOM_UUID(), id, 4
15+
FROM security_analysis_parameters;
16+
</sql>
17+
</changeSet>
18+
19+
<changeSet id="insert-new-limit-reduction-entity-pg" author="labidiayo" dbms="postgresql">
1220
<sql>
1321
INSERT INTO limit_reduction_entity (id, security_analysis_parameters_id, index)
1422
SELECT gen_random_uuid(), id, 4

0 commit comments

Comments
 (0)