我在build.gradle
liquibase {
activities {
main {
changeLogFile "${this.rootDir}/src/main/resources/changelog-master.xml"
url "jdbc:postgresql://localhost:5432/test?createDatabaseIfNotExist=true"
username "xxxx"
password "xxxx"
}
}
runList = 'main'
}
URL中的 createDatabaseIfNotExist
设置为true。
当我启动服务器时,它提供的数据库不存在。
如果数据库不存在,我想要liquibase创建数据库。
请提出任何建议
答案 0 :(得分:0)
这是一个postgres jdbc问题,而不是liquibase。
我搜索了帖子documentation,找不到" createDatabaseIfNotExist"。那是一个mysql连接参数吗?