Skip to content

Commit

Permalink
0002047: Add extension service that can read extensions from database
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Nov 5, 2014
1 parent c2786d8 commit 1c21ef3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions symmetric-core/src/main/resources/symmetric-schema.xml
Expand Up @@ -120,9 +120,9 @@
<column name="enabled" type="BOOLEANINT" size="1" required="true" default="1" description="Whether or not the extension is enabled." />
<column name="extension_order" type="INTEGER" required="true" default="1" description="Specifies the order in which to install extensions when multiple extensions implement the same interface."/>
<column name="extension_text" type="LONGVARCHAR" description="The script or code of the extension." />
<column name="create_time" type="TIMESTAMP" required="true" description="Timestamp when this entry was created." />
<column name="last_update_by" type="VARCHAR" size="50" description="The user who last updated this entry." />
<column name="last_update_time" type="TIMESTAMP" required="true" description="Timestamp when a user last updated this entry." />
<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." />
<column name="last_update_time" type="TIMESTAMP" description="Timestamp when a user last updated this entry." />
</table>

<table name="extract_request" description="This table is used internally to request the extract of initial loads asynchronously when the initial load extract job is enabled.">
Expand Down

0 comments on commit 1c21ef3

Please sign in to comment.