2024-01-09 11:15:02 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
|
|
|
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2024-08-07 08:10:14 +02:00
|
|
|
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog https://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd">
|
2024-01-09 11:15:02 +01:00
|
|
|
|
|
|
|
|
<changeSet id="delete-all-sessions" author="athou">
|
|
|
|
|
<preConditions onFail="MARK_RAN" onFailMessage="table not found">
|
|
|
|
|
<tableExists tableName="JettySessions" />
|
|
|
|
|
</preConditions>
|
|
|
|
|
<delete tableName="JettySessions" />
|
|
|
|
|
</changeSet>
|
|
|
|
|
|
|
|
|
|
</databaseChangeLog>
|