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>
18 lines
702 B
XML
18 lines
702 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">
|
|
|
|
<changeSet id="004-add-cancellation-columns" author="fete">
|
|
<addColumn tableName="events">
|
|
<column name="cancelled" type="BOOLEAN" defaultValueBoolean="false">
|
|
<constraints nullable="false"/>
|
|
</column>
|
|
<column name="cancellation_reason" type="VARCHAR(2000)"/>
|
|
</addColumn>
|
|
</changeSet>
|
|
|
|
</databaseChangeLog>
|