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:
Lorenzo Tilve Álvaro 2013-04-17 18:23:47 +02:00
parent cc246eedfa
commit b2ccc9e0eb
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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>