File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/main/resources/templates Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 33
44 <groupId >com.github.throyer</groupId >
55 <artifactId >migration-maven-plugin</artifactId >
6- <version >1.2.5 </version >
6+ <version >1.2.6 </version >
77 <packaging >maven-plugin</packaging >
88
99 <name >Flyway migration generator</name >
Original file line number Diff line number Diff line change @@ -2,13 +2,16 @@ package db.migration;
22
33import static org.jooq.impl.DSL.*;
44import static org.jooq.impl.SQLDataType.*;
5+
56import org.flywaydb.core.api.migration.BaseJavaMigration;
67import org.flywaydb.core.api.migration.Context;
78
89/**
910* @see https://www.jooq.org/doc/3.1/manual/sql-building/ddl-statements/
1011*/
1112public class V%s__%s extends BaseJavaMigration {
13+
14+ @Override
1215 public void migrate(Context context) throws Exception {
1316 var create = using(context.getConnection());
1417 // create.transaction(configuration -> {
You can’t perform that action at this time.
0 commit comments