<database name="test">
   <table name="MY_TABLE">
<column name="PROP_NAME" primaryKey="true" required="true" type="VARCHAR" size="200" autoIncrement="false"/> <column name="PROP_VALUE" primaryKey="false" required="false" type="VARCHAR" size="200" autoIncrement="false"/> <column name="PROP_VALUE_EXT" primaryKey="false" required="false" type="LONGVARBINARY" size="0" autoIncrement="false"/>
   </table>
 </database>

this was the DDL that created it.

CREATE TABLE MY_TABLE(
   prop_name VARCHAR2(200) NOT NULL PRIMARY KEY,
   prop_value VARCHAR2(200),
   prop_value_ext LONG RAW NULL
)



Tim

Thomas Dudziak wrote:

On 1/31/06, Tim Dudgeon <[EMAIL PROTECTED]> wrote:
There is one additional aspect to this - note the line in the log:

INFO: Column PROP_VALUE_EXT in table MY_TABLE differs from current
specification

I didn't make any changes, but DDLUtils thinks the column has been changed.

Mhmm, what is the generated model (could you post it as XML ?)

Tom

Reply via email to