Executes a conversion of structure of the database, In this document, the necessary information to writte the XML conversions can be found.

1 conversion

<conversion />
Example

Adds a columns to a table.

Copy
<xsql-script name='conversion'>
  <body>

    <conversion>
       <xsql-conversion>
           <add-columns table='mytable'>
               <column name='mycolumn' type='smallint' before='c2' />
           </add-columns>
       </xsql-conversion>
    </conversion>

  </body>
</xsql-script>