View Revisions: Issue #1269

Summary 0001269: Update ddl utils xml to support specific database types so create schema commands replicate the same schema on same databases
Revision 2013-10-29 19:54 by chenson
Description Update ddl utils xml to support specific database types so create schema commands replicate the same schema on same databases.

Maybe it can look something like this:

<column name="column" type="INTEGER" required="true">
   <platform-column name="oracle" type="NUMERIC"/>
</column>

The idea is that if you extract the xml from a specific database, then the specific database type will be represented. When applying ddl, if applying to a specific database and the database specific notation exists, then the ddl would be generated using the database specific notation.
Revision 2013-06-08 16:43 by chenson
Description Update ddl utils xml to support specific database types so create schema commands replicate the same schema on same databases.

Maybe it can look something like this:

<column name="column" type="INTEGER" required="true">
   <database name="oracle" type="NUMERIC"/>
</column>

The idea is that if you extract the xml from a specific database, then the specific database type will be represented. When applying ddl, if applying to a specific database and the database specific notation exists, then the ddl would be generated using the database specific notation.