Added database changelog for filtering preferences
FEA: ItEr77S15FilteringEnhancements
This commit is contained in:
parent
676b6c4876
commit
1cab756069
1 changed files with 32 additions and 0 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue