Skip to content
Snippets Groups Projects
Commit d0216961 authored by Sebastian Listl's avatar Sebastian Listl :speech_balloon:
Browse files

1069305 corrected liquibase file for ASYS_COLLECTOR_DATA

parent 3a38272c
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
<changeSet author="j.hoermann" id="4fe7309e-e131-4f3d-8e65-fb399fcd7090">
<createTable tableName="ASYS_COLLECTOR_DATA">
<column name="DATAID" type="CHAR(63)">
<constraints primaryKey="true" primaryKeyName="PK_ASYS_COLLECTOR_DATA_ID"/>
<constraints nullable="false"/>
</column>
<column name="SHORTINFO" type="VARCHAR(255)"/>
<column name="TIMECOLLECTED" type="DATETIME"/>
......@@ -13,5 +13,8 @@
<createIndex tableName="ASYS_COLLECTOR_DATA" indexName="IDX_COLLECTORDATA_TIMECOLLECT">
<column name="TIMECOLLECTED"/>
</createIndex>
<createIndex tableName="ASYS_COLLECTOR_DATA" indexName="IDX_COLLECTORDATA_DATAID">
<column name="DATAID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment