master.xml 1.94 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"/>
    <include file="classpath:db/changelog/pbc-inventory/001-inventory-init.xml"/>
    <include file="classpath:db/changelog/pbc-inventory/002-inventory-movement-ledger.xml"/>
    <include file="classpath:db/changelog/pbc-warehousing/001-warehousing-init.xml"/>
    <include file="classpath:db/changelog/pbc-orders-sales/001-orders-sales-init.xml"/>
    <include file="classpath:db/changelog/pbc-orders-purchase/001-orders-purchase-init.xml"/>
    <include file="classpath:db/changelog/pbc-finance/001-finance-init.xml"/>
    <include file="classpath:db/changelog/pbc-finance/002-finance-status.xml"/>
    <include file="classpath:db/changelog/pbc-production/001-production-init.xml"/>
    <include file="classpath:db/changelog/pbc-production/002-production-v2.xml"/>
    <include file="classpath:db/changelog/pbc-quality/001-quality-init.xml"/>
</databaseChangeLog>