Skip to content

Commit

Permalink
fix validation error
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Nov 21, 2016
1 parent f6048ff commit 219a200
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions symmetric-core/src/test/resources/test-schema.xml
Expand Up @@ -320,12 +320,12 @@
</table>

<table name="test_a">
<column name="id" type="varchar" size="10" required="true" primaryKey="true"/>
<column name="id" type="VARCHAR" size="10" required="true" primaryKey="true"/>
</table>

<table name="test_b">
<column name="id" type="varchar" size="10" required="true" primaryKey="true"/>
<column name="aid" type="varchar" size="10" required="true" />
<column name="id" type="VARCHAR" size="10" required="true" primaryKey="true"/>
<column name="aid" type="VARCHAR" size="10" required="true" />
<foreign-key foreignTable="test_a" name="fk_b_to_a_id">
<reference local="aid" foreign="id" />
</foreign-key>
Expand Down

0 comments on commit 219a200

Please sign in to comment.