github.com/wawandco/oxplugins@v0.7.11/tools/liquibase/template.go (about)

     1  package liquibase
     2  
     3  // MigrationTemplate for the migration generator.
     4  var migrationTemplate = `
     5  <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.0.xsd http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
     6  	<changeSet id="{{.}}" author="ox">
     7  		<sql></sql>
     8  		<rollback></rollback>
     9  	</changeSet>
    10  </databaseChangeLog>`