Skip to content

Commit 5006974

Browse files
committed
only migrate postgres data
Signed-off-by: jamal-khey <[email protected]>
1 parent 174998d commit 5006974

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed
Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
22
<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">
33
<changeSet author="jamalk (generated)" id="1734002324759-1">
4-
<sqlFile path="migrate_limit_reduction_rest.sql"
5-
relativeToChangelogFile="true"
6-
encoding="UTF-8"/>
4+
<sqlFile
5+
dbms="postgresql"
6+
encoding="UTF-8"
7+
path="migrate_limit_reduction_rest.sql"
8+
relativeToChangelogFile="true"
9+
splitStatements="true"
10+
stripComments="true"/>
711
</changeSet>
812
</databaseChangeLog>
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
-- First truncate the child table
1+
22
TRUNCATE TABLE limit_reduction_entity_reductions;
33

4-
-- Then truncate the parent table
54
TRUNCATE TABLE limit_reduction_entity CASCADE;

0 commit comments

Comments
 (0)