====== Modifying Generated SQL ====== Although LiquiBase supports most standard SQL statements with its change tags, there are times when the generated SQL needs to be slightly different for your particular needs. Examples include changing datatypes or adding additional vendor-specific clauses such as "ENGINE INNODB" to CREATE TABLE statements. //Since 1.9// ===== Sample ===== ===== Available Attributes ===== ^ dbms | List of [[../databases|database types]] to apply the modification(s) to. If not specified, modification is applied on all runs | ^ context | List of [[contexts]] in which to run the sql modification. If not specified, is applied in all contexts //Since 2.0// | ^ applyToRollback| Should the sql modification be applied to rollback statements? Default='false' //Since 2.0// | ===== Available Sub-Tags ===== ==== prepend ==== Adds SQL to the beginning of the statement. === Available Attributes === ^ value | Text to add to beginning of statement | ==== append ==== Adds SQL to the end of the statement. === Available Attributes === ^ value | Text to add to end of statement | ==== replace ==== Replaces all instances of the text specified. === Available Attributes === ^ replace | Text to replace | ^ with | Text to replace with | ==== regExpReplace ==== Replaces all instances of the regular expression specified. === Available Attributes === ^ replace | Regular expression specifying text to replace | ^ with | Text to replace with |