Advertisement
dokerplp

Untitled

Dec 21st, 2021
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.85 KB | None | 0 0
  1. <databaseChangeLog
  2.        xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
  3.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.        xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
  5.         http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
  6.  
  7.     <changeSet id="createIndex-IX_QUALIFIEDINVESTOR_CLIENT" author="bva">
  8.         <comment>Создание индекса "IX_QUALIFIEDINVESTOR_CLIENT" на таблицу QUALIFIEDINVESTOR. Поле CLIENT. Автор: Буторин В.А.
  9.         </comment>
  10.         <createIndex tableName="QUALIFIEDINVESTOR"
  11.                     indexName="IX_QUALIFIEDINVESTOR_CLIENT"
  12.                     tablespace="${db.tablespace.index}"
  13.                     unique="false">
  14.             <column name="CLIENT"/>
  15.         </createIndex>
  16.     </changeSet>
  17.  
  18. </databaseChangeLog>
  19.  
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement