2024-01-13 14:20:46 +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-13 14:20:46 +01:00
|
|
|
|
|
|
|
|
<changeSet id="use-timestamps" author="athou">
|
2024-01-13 17:23:16 +01:00
|
|
|
<validCheckSum>9:bf66bf7def9ec3dab1f365f7230d92cf</validCheckSum>
|
|
|
|
|
<modifyDataType tableName="FEEDS" columnName="lastUpdated" newDataType="${timestamp_type}" />
|
|
|
|
|
<modifyDataType tableName="FEEDS" columnName="lastPublishedDate" newDataType="${timestamp_type}" />
|
|
|
|
|
<modifyDataType tableName="FEEDS" columnName="lastEntryDate" newDataType="${timestamp_type}" />
|
|
|
|
|
<modifyDataType tableName="FEEDS" columnName="disabledUntil" newDataType="${timestamp_type}" />
|
|
|
|
|
<modifyDataType tableName="FEEDENTRIES" columnName="inserted" newDataType="${timestamp_type}" />
|
|
|
|
|
<modifyDataType tableName="FEEDENTRIES" columnName="updated" newDataType="${timestamp_type}" />
|
|
|
|
|
<modifyDataType tableName="FEEDENTRYSTATUSES" columnName="entryInserted" newDataType="${timestamp_type}" />
|
|
|
|
|
<modifyDataType tableName="FEEDENTRYSTATUSES" columnName="entryUpdated" newDataType="${timestamp_type}" />
|
|
|
|
|
<modifyDataType tableName="USERS" columnName="lastLogin" newDataType="${timestamp_type}" />
|
|
|
|
|
<modifyDataType tableName="USERS" columnName="created" newDataType="${timestamp_type}" />
|
|
|
|
|
<modifyDataType tableName="USERS" columnName="recoverPasswordTokenDate" newDataType="${timestamp_type}" />
|
2024-01-13 14:20:46 +01:00
|
|
|
</changeSet>
|
|
|
|
|
|
2024-01-18 09:10:13 +01:00
|
|
|
<changeSet id="mobile-footer-setting" author="athou">
|
|
|
|
|
<addColumn tableName="USERSETTINGS">
|
|
|
|
|
<column name="mobileFooter" type="BOOLEAN" defaultValueBoolean="false">
|
|
|
|
|
<constraints nullable="false" />
|
|
|
|
|
</column>
|
|
|
|
|
</addColumn>
|
|
|
|
|
</changeSet>
|
|
|
|
|
|
2024-01-13 14:20:46 +01:00
|
|
|
</databaseChangeLog>
|