Merge remote-tracking branch 'origin/develop' into develop
* origin/develop: ERVU-444 : add recruit_id in diploma tables fix reset filters by setting initial values into hidden text fields filters
This commit is contained in:
commit
1db57837b7
3 changed files with 278 additions and 0 deletions
|
|
@ -488,4 +488,40 @@
|
|||
<dropTable tableName="citizen_education_diploma" schemaName="ervu_dashboard"/>
|
||||
</rollback>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="0014" author="AlexSave">
|
||||
<preConditions onFail="MARK_RAN">
|
||||
<not>
|
||||
<columnExists tableName="citizen_education_diploma" columnName="recruit_id"/>
|
||||
</not>
|
||||
</preConditions>
|
||||
|
||||
<addColumn tableName="citizen_education_diploma">
|
||||
<column name="recruit_id" type="uuid" remarks="Идентификатор рекрута">
|
||||
<constraints nullable="false"/>
|
||||
</column>
|
||||
</addColumn>
|
||||
|
||||
<rollback>
|
||||
<dropColumn tableName="citizen_education_diploma" columnName="recruit_id"/>
|
||||
</rollback>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="0015" author="AlexSave">
|
||||
<preConditions onFail="MARK_RAN">
|
||||
<not>
|
||||
<columnExists tableName="citizen_foreign_education_diploma" columnName="recruit_id"/>
|
||||
</not>
|
||||
</preConditions>
|
||||
|
||||
<addColumn tableName="citizen_foreign_education_diploma">
|
||||
<column name="recruit_id" type="uuid" remarks="Идентификатор рекрута">
|
||||
<constraints nullable="false"/>
|
||||
</column>
|
||||
</addColumn>
|
||||
|
||||
<rollback>
|
||||
<dropColumn tableName="citizen_foreign_education_diploma" columnName="recruit_id"/>
|
||||
</rollback>
|
||||
</changeSet>
|
||||
</databaseChangeLog>
|
||||
Loading…
Add table
Add a link
Reference in a new issue