Skip to content

Commit

Permalink
the timestamps are not required on security table
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Dec 20, 2007
1 parent f8a1338 commit f3504fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions symmetric/src/main/resources/ddl-config.xml
Expand Up @@ -138,9 +138,9 @@
<column name="node_id" type="VARCHAR" size="50" required="true" primaryKey="true" />
<column name="password" type="VARCHAR" size="50" required="true" />
<column name="registration_enabled" type="BOOLEANINT" size="1" default="0" />
<column name="registration_time" type="TIMESTAMP" />
<column name="registration_time" type="TIMESTAMP" required="false" />
<column name="initial_load_enabled" type="BOOLEANINT" size="1" default="0" />
<column name="initial_load_time" type="TIMESTAMP" />
<column name="initial_load_time" type="TIMESTAMP" required="false" />
<foreign-key name="fk_cs_node_id" foreignTable="node">
<reference local="node_id" foreign="node_id" />
</foreign-key>
Expand Down

0 comments on commit f3504fb

Please sign in to comment.