Skip to content

Commit

Permalink
0003124: Sym_sequence table change column name cycle to not be an ANSI
Browse files Browse the repository at this point in the history
reserved word
  • Loading branch information
jumpmind-josh committed May 24, 2017
1 parent 627f120 commit c4d25c2
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 @@ -741,7 +741,7 @@
<column name="increment_by" type="INTEGER" required="true" default="1" description="Specify the interval between sequence numbers. This integer value can be any positive or negative integer, but it cannot be 0."/>
<column name="min_value" type="BIGINT" required="true" default="1" description="Specify the minimum value of the sequence."/>
<column name="max_value" type="BIGINT" required="true" default="9999999999" description="Specify the maximum value the sequence can generate."/>
<column name="cycle" type="BOOLEANINT" size="1" default="0" description="Indicate whether the sequence should automatically cycle once a boundary is hit." />
<column name="cycle_flag" type="BOOLEANINT" size="1" default="0" description="Indicate whether the sequence should automatically cycle once a boundary is hit." />
<column name="cache_size" type="INTEGER" required="true" default="0" description="Specify the number of sequence numbers to acquire and cache when one is requested."/>
<column name="create_time" type="TIMESTAMP" description="Timestamp when this entry was created." />
<column name="last_update_by" type="VARCHAR" size="50" description="The user who last updated this entry." />
Expand Down

0 comments on commit c4d25c2

Please sign in to comment.