Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
KNL-1484 Reduce column lengths to support mysql utf8mb4 databases (sa…
Browse files Browse the repository at this point in the history
  • Loading branch information
smarquard authored and ottenhoff committed Jan 12, 2017
1 parent 4ad7482 commit 3da9704
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@

<property name="node" type="string" column="NODE" length="255" index="SCI_NODE_IDX" />
<property name="name" type="string" not-null="true" column="NAME" length="255" index="SCI_NAME_IDX" />
<property name="value" type="string" length="4000" not-null="false" column="VALUE"/>
<property name="rawValue" type="string" length="4000" not-null="false" column="RAW_VALUE"/>
<property name="value" type="string" length="3000" not-null="false" column="VALUE"/>
<property name="rawValue" type="string" length="3000" not-null="false" column="RAW_VALUE"/>
<property name="type" type="string" not-null="true" column="TYPE" length="255"/>
<property name="defaultValue" type="string" length="4000" not-null="false" column="DEFAULT_VALUE"/>
<property name="description" type="string" length="4000" not-null="false" column="DESCRIPTION"/>
<property name="defaultValue" type="string" length="3000" not-null="false" column="DEFAULT_VALUE"/>
<property name="description" type="string" length="3000" not-null="false" column="DESCRIPTION"/>
<property name="source" type="string" not-null="false" column="SOURCE" length="255"/>
<property name="defaulted" type="boolean" not-null="true" column="DEFAULTED"/>
<property name="registered" type="boolean" not-null="true" column="REGISTERED"/>
Expand Down

0 comments on commit 3da9704

Please sign in to comment.