master.xml 1.12 KB
<?xml version="1.0" encoding="UTF-8"?>
<!--
  vibe_erp — Liquibase master changelog.

  This file composes per-PBC changelogs via <include>. Each PBC owns its own
  changelog under db/changelog/<pbc-name>/ and is responsible for its own
  table prefix (architecture spec section 8 — schema namespacing).
-->
<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
                                       https://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.27.xsd">
    <include file="classpath:db/changelog/platform/000-platform-init.xml"/>
    <include file="classpath:db/changelog/platform/001-platform-events.xml"/>
    <include file="classpath:db/changelog/pbc-identity/001-identity-init.xml"/>
    <include file="classpath:db/changelog/pbc-identity/002-identity-credential.xml"/>
    <include file="classpath:db/changelog/pbc-catalog/001-catalog-init.xml"/>
    <include file="classpath:db/changelog/pbc-partners/001-partners-init.xml"/>
</databaseChangeLog>