Skip to content

Commit 3c139d9

Browse files
authored
Merge pull request #22 from jasonlyle88/develop
Version 1.5.0
2 parents 1d53960 + 377f46c commit 3c139d9

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
liquibase update -search-path / -defaults-file &1/sqlcl-liquibase-defaults-file-respected/liquibase.properties -changelog-file &1/sqlcl-liquibase-defaults-file-respected/changelog.xml
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<databaseChangeLog
3+
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xmlns:ora="http://www.oracle.com/xml/ns/dbchangelog-ext"
6+
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.17.xsd"
7+
>
8+
<changeSet
9+
author="jlyle"
10+
id="test1"
11+
runOnChange="true"
12+
runAlways="true"
13+
>
14+
<sql>select 1 from sys.dual;</sql>
15+
</changeSet>
16+
17+
<!-- Identical changeset identifier needed to test defaults file -->
18+
<changeSet
19+
author="jlyle"
20+
id="test1"
21+
runOnChange="true"
22+
runAlways="true"
23+
>
24+
<sql>select 1 from sys.dual;</sql>
25+
</changeSet>
26+
</databaseChangeLog>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
liquibase.allowDuplicatedChangesetIdentifiers=true

0 commit comments

Comments
 (0)