File tree Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments