Sql 下次服务器重新启动时未应用Liquibase更改日志

Sql 下次服务器重新启动时未应用Liquibase更改日志,sql,jhipster,database-migration,liquibase,Sql,Jhipster,Database Migration,Liquibase,我有以下master.xml和changelog <?xml version="1.0" encoding="utf-8"?> <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase

我有以下master.xml和changelog

<?xml version="1.0" encoding="utf-8"?>
<databaseChangeLog
    xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd">

    <include file="config/liquibase/changelog/00000000000000_initial_schema.xml" relativeToChangelogFile="false"/>
    <include file="config/liquibase/changelog/20180616032541_changelog.sql" relativeToChangelogFile="false"/>
</databaseChangeLog>
我假设在下一次服务器重启期间,我的sql应该自动应用


但未插入记录。

更改日志未包含更改集元数据

--liquibase formatted sql

--changeset author:pmverma authority_add:1
begin;
INSERT INTO jhi_authority(name) VALUES ('ROLE_MANAGER');
end;

--liquibase formatted sql

--changeset author:pmverma authority_add:1
begin;
INSERT INTO jhi_authority(name) VALUES ('ROLE_MANAGER');
end;