Add PATCH /events/{eventToken} endpoint for organizers to cancel events,
cancellation banner for visitors, and RSVP rejection on cancelled events.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
648 B
XML
15 lines
648 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"/>
|
|
<include file="db/changelog/002-add-timezone-column.xml"/>
|
|
<include file="db/changelog/003-create-rsvps-table.xml"/>
|
|
<include file="db/changelog/004-add-cancellation-columns.xml"/>
|
|
|
|
</databaseChangeLog>
|