Skip to content

Commit

Permalink
Reduced the max length for order_type.java_class_name column - TRUNK-…
Browse files Browse the repository at this point in the history
…4286
  • Loading branch information
wluyima committed Mar 19, 2014
1 parent f087380 commit 216e0e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/src/main/resources/liquibase-update-to-latest.xml
Expand Up @@ -6529,7 +6529,7 @@
<column name="description" type="varchar(1024)">
<constraints nullable="false"/>
</column>
<column name="java_class_name" type="varchar(1024)">
<column name="java_class_name" type="varchar(255)">
<constraints nullable="false" unique="true" />
</column>
<column name="parent" type="int"/>
Expand Down
Expand Up @@ -19,7 +19,7 @@

<property name="description" type="java.lang.String" not-null="true" length="1024"/>

<property name="javaClassName" type="java.lang.String" column="java_class_name" not-null="true" length="1024" unique="true" />
<property name="javaClassName" type="java.lang.String" column="java_class_name" not-null="true" length="255" unique="true" />

<property name="dateCreated" type="java.util.Date" column="date_created" not-null="true" length="19"/>

Expand Down

0 comments on commit 216e0e1

Please sign in to comment.