01: package liquibase.database.example;
02:
03: import liquibase.database.H2Database;
04: import liquibase.exception.JDBCException;
05:
06: public class ExampleCustomDatabase extends H2Database {
07:
08: public String getProductName() {
09: return "H2 Database: Custom Implementation";
10: }
11:
12: public void tag(String tagString) throws JDBCException {
13: System.out.println("Custom tagging");
14: super.tag(tagString);
15: }
16: }
|