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:
Dave Syer
2014-05-01 19:37:25 +01:00
parent 68e33b25c1
commit 5548b24c4c
20 changed files with 498 additions and 3 deletions

View File

@@ -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');