JPA entity, repository, persistence adapter for events. Liquibase changelog creates the events table with BIGSERIAL ID and UUID tokens. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
455 B
XML
12 lines
455 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/000-baseline.xml"/>
|
|
<include file="db/changelog/001-create-events-table.xml"/>
|
|
|
|
</databaseChangeLog>
|