Added database changelog for filtering preferences

FEA: ItEr77S15FilteringEnhancements
This commit is contained in:
Lorenzo Tilve Álvaro 2013-01-28 09:56:03 +01:00
parent 676b6c4876
commit 1cab756069

View file

@ -208,4 +208,36 @@
columnDataType="INTEGER" /> columnDataType="INTEGER" />
</changeSet> </changeSet>
<changeSet id="add-projects_filter_period_since-column-to-user_table"
author="ltilve">
<comment>Add column to store project filtering interval 'range since' parameter</comment>
<addColumn tableName="user_table">
<column name="projects_filter_period_since" type="INTEGER" />
</addColumn>
</changeSet>
<changeSet id="add-projects_filter_period_to-column-to-user_table"
author="ltilve">
<comment>Add column to store project filtering interval 'range to' parameter</comment>
<addColumn tableName="user_table">
<column name="projects_filter_period_to" type="INTEGER" />
</addColumn>
</changeSet>
<changeSet id="add-resources_load_filter_period_since-column-to-user_table"
author="ltilve">
<comment>Add column to store resources load filtering interval 'range since' parameter</comment>
<addColumn tableName="user_table">
<column name="resources_load_filter_period_since" type="INTEGER" />
</addColumn>
</changeSet>
<changeSet id="add-resources_load_filter_period_to-column-to-user_table"
author="ltilve">
<comment>Add column to store resources load filtering interval 'range to' parameter</comment>
<addColumn tableName="user_table">
<column name="resources_load_filter_period_to" type="INTEGER" />
</addColumn>
</changeSet>
</databaseChangeLog> </databaseChangeLog>