Skip to content

Latest commit

 

History

History

liquibase-demo

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

springboot liquibase db migrate demo

add liquibase depend

   <dependency>
            <groupId>org.liquibase</groupId>
            <artifactId>liquibase-core</artifactId>
        </dependency>

add db.changelog-master.yaml file in '/reources/db/changelog',suggest include change file, not include change log detail in it

databaseChangeLog:
 - include:
     file: db/changelog/init.sql
 - include:
     file: db/changelog/create_table.sql