Fix MySQL problem when loading connector properties bootstraps
There was some issue regarding connector_properties columns names that was causing that the bootstraps launched an SQL exception when deploying over MySQL. FEA: ItEr77S04BugFixing
This commit is contained in:
parent
cc246eedfa
commit
b2ccc9e0eb
2 changed files with 4 additions and 4 deletions
|
|
@ -269,10 +269,10 @@
|
|||
<column name="connector_property_position" type="INTEGER">
|
||||
<constraints nullable="false" />
|
||||
</column>
|
||||
<column name="key" type="VARCHAR(255)">
|
||||
<column name="property_key" type="VARCHAR(255)">
|
||||
<constraints nullable="false" />
|
||||
</column>
|
||||
<column name="value" type="VARCHAR(255)" />
|
||||
<column name="property_value" type="VARCHAR(255)" />
|
||||
</createTable>
|
||||
|
||||
<addPrimaryKey
|
||||
|
|
|
|||
|
|
@ -19,9 +19,9 @@
|
|||
<list-index column="connector_property_position" />
|
||||
|
||||
<composite-element class="ConnectorProperty">
|
||||
<property name="key" column="key"
|
||||
<property name="key" column="property_key"
|
||||
not-null="true" />
|
||||
<property name="value" column="value" />
|
||||
<property name="value" column="property_value" />
|
||||
</composite-element>
|
||||
</list>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue