OpenAPI: new GetEventResponse schema, timezone on Create request/response. Liquibase: add timezone VARCHAR(64) NOT NULL DEFAULT 'UTC' column. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
621 B
XML
17 lines
621 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="002-add-timezone-column" author="fete">
|
|
<addColumn tableName="events">
|
|
<column name="timezone" type="varchar(64)" defaultValue="UTC">
|
|
<constraints nullable="false"/>
|
|
</column>
|
|
</addColumn>
|
|
</changeSet>
|
|
|
|
</databaseChangeLog>
|