mirror of
https://github.com/s-frick/effigenix.git
synced 2026-03-28 10:19:35 +01:00
Liquibase-Migration (005), JPA-Entities, Mapper, Spring-Data-Repos, Domain-Repo-Adapter, Request-DTOs, Error-Mapper, REST-Controller (11 Article-Endpoints, 4 Category-Endpoints) und UseCaseConfiguration für alle 15 Use Cases. GlobalExceptionHandler erweitert.
14 lines
729 B
XML
14 lines
729 B
XML
<?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-latest.xsd">
|
|
|
|
<include file="db/changelog/changes/001-create-user-management-schema.xml"/>
|
|
<include file="db/changelog/changes/002-seed-roles-and-permissions.xml"/>
|
|
<include file="db/changelog/changes/003-create-audit-logs-table.xml"/>
|
|
<include file="db/changelog/changes/004-seed-admin-user.xml"/>
|
|
<include file="db/changelog/changes/005-create-masterdata-schema.xml"/>
|
|
|
|
</databaseChangeLog>
|