Add autoconfig support for Flyway migrations
Flyway starts up with its default settings if it is on the classpath. You can also ask Boot to barf if the migration scripts are missing. Fixes gh-730
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE PERSON (
|
||||
id INTEGER GENERATED BY DEFAULT AS IDENTITY,
|
||||
first_name varchar(255) not null,
|
||||
last_name varchar(255) not null
|
||||
);
|
||||
|
||||
insert into PERSON (first_name, last_name) values ('Dave', 'Syer');
|
||||
Reference in New Issue
Block a user