Skip to content

Commit 15bb543

Browse files
committed
work
1 parent 0d1fefa commit 15bb543

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

liquibase.properties

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
changeLogFile=src/main/resources/db/liquibase-changelog.xml
2+
diffChangeLogFile=src/main/resources/db/liquibase-diff-changelog.xml
3+
classpath=target/dependency/postgresql-42.5.1.jar
4+
driver=org.postgresql.Driver
5+
url=jdbc:postgresql://localhost:5432/simpleworklist
6+
username=simpleworklist
7+
password=simpleworklistpwd
8+
referenceDriver=org.postgresql.Driver
9+
referenceUrl=jdbc:postgresql://localhost:5432/simpleworklistref
10+
referenceUsername=simpleworklist
11+
referencePassword=simpleworklistpwd
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
6+
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.4.xsd
7+
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
8+
9+
<preConditions>
10+
<dbms type="postgresql" />
11+
<runningAs username="simpleworklist" />
12+
</preConditions>
13+
14+
<!--
15+
<changeSet author="thomaswoehlke" failOnError="false" dbms="postgresql" id="1">
16+
<comment>initial data structure</comment>
17+
</changeSet>
18+
19+
<changeSet author="thomaswoehlke" failOnError="false" dbms="postgresql" id="2">
20+
</changeSet>
21+
-->
22+
23+
</databaseChangeLog>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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+
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.4.xsd">
6+
7+
</databaseChangeLog>

0 commit comments

Comments
 (0)