Skip to content

Commit

Permalink
SAK-31937 Reduce column lengths to support mysql utf8mb4 (sakaiprojec…
Browse files Browse the repository at this point in the history
  • Loading branch information
smarquard authored and ern committed Jan 5, 2017
1 parent 2fe7d71 commit 55b62cb
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
</id>
<!-- We need 2 indexes on columns so that's why we use the <column> tag.
Column order matters because it affects multi-column index order. -->
<property name="baseName" type="string" not-null="true" length="255" index="SMB_BASENAME_IDX">
<column name="BASENAME" index="SMB_SEARCH"/>
<property name="baseName" type="string" not-null="true" index="SMB_BASENAME_IDX">
<column name="BASENAME" length="150" index="SMB_SEARCH"/>
</property>
<property name="moduleName" type="string" not-null="true" length="255" index="SMB_MODULE_IDX">
<column name="MODULE_NAME" index="SMB_SEARCH"/>
<property name="moduleName" type="string" not-null="true" index="SMB_MODULE_IDX">
<column name="MODULE_NAME" length="150" index="SMB_SEARCH"/>
</property>
<property name="locale" type="string" not-null="true" length="255" index="SMB_LOCALE_IDX">
<column name="LOCALE" index="SMB_SEARCH"/>
<property name="locale" type="string" not-null="true" index="SMB_LOCALE_IDX">
<column name="LOCALE" length="150" index="SMB_SEARCH"/>
</property>
<property name="propertyName" type="string" not-null="true" length="255" index="SMB_PROPNAME_IDX">
<column name="PROP_NAME" index="SMB_SEARCH"/>
<property name="propertyName" type="string" not-null="true" index="SMB_PROPNAME_IDX">
<column name="PROP_NAME" length="150" index="SMB_SEARCH"/>
</property>

<property name="defaultValue" column="DEFAULT_VALUE" type="materialized_clob" not-null="false" />
Expand Down

0 comments on commit 55b62cb

Please sign in to comment.