Skip to content

Commit

Permalink
0000795: ip_address field is not long enough to contain ipv6 addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Aug 30, 2012
1 parent dcfdb15 commit 0b979be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion symmetric-core/src/main/resources/symmetric-schema.xml
Expand Up @@ -287,7 +287,7 @@
<column name="external_id" type="VARCHAR" size="50" description="A domain-specific identifier for context within the local system. For example, the retail store number. "/>
<column name="status" type="CHAR" size="2" required="true" description="The current status of the registration attempt. Valid statuses are NR (not registered), IG (ignored), OK (sucessful)" />
<column name="host_name" type="VARCHAR" size="60" required="true" description="The host name of a workstation or server. If more than one instance of SymmetricDS runs on the same server, then this value can be a 'server id' specified by -Druntime.symmetric.cluster.server.id" />
<column name="ip_address" type="VARCHAR" size="21" required="true" description="The ip address for the host." />
<column name="ip_address" type="VARCHAR" size="50" required="true" description="The ip address for the host." />
<column name="attempt_count" type="INTEGER" default="0" description="The number of registration attempts." />
<column name="registered_node_id" type="VARCHAR" size="50" description="A unique identifier for a node." />
<column name="create_time" type="TIMESTAMP" required="true" description="Timestamp when this entry was created." />
Expand Down

0 comments on commit 0b979be

Please sign in to comment.