2024-09-10 16:22:23 +02: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"
|
|
|
|
|
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog https://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd">
|
|
|
|
|
|
|
|
|
|
<changeSet id="entriesToKeepOnTopWhenScrolling-setting" author="athou">
|
|
|
|
|
<addColumn tableName="USERSETTINGS">
|
|
|
|
|
<column name="entriesToKeepOnTopWhenScrolling" type="INT" valueNumeric="0">
|
|
|
|
|
<constraints nullable="false" />
|
|
|
|
|
</column>
|
|
|
|
|
</addColumn>
|
|
|
|
|
</changeSet>
|
2024-09-13 22:22:41 +02:00
|
|
|
|
|
|
|
|
<changeSet id="content-direction" author="athou">
|
|
|
|
|
<addColumn tableName="FEEDENTRYCONTENTS">
|
|
|
|
|
<column name="direction" type="varchar(16)" />
|
|
|
|
|
</addColumn>
|
|
|
|
|
</changeSet>
|
2024-09-10 16:22:23 +02:00
|
|
|
</databaseChangeLog>
|