I am using flyway db version 6.0.8 in my local macbook pro with MySQL Database Integration. I have placed a create table script under ~/sql and using below command to migrate. However its not creating table its only creating "flyway_schema_history" but not the actual table.
Conf file:
flyway.user=flyway flyway.url=jdbc:mysql://127.0.0.1:3306/db Below are the flyway logs:-
Flyway Community Edition 6.0.8 by Redgate Database: jdbc:mysql://127.0.0.1:3306/DB (MySQL 8.0) Successfully validated 0 migrations (execution time 00:00.005s) Creating Schema History table `db`.`flyway_schema_history` with baseline ... Successfully baselined schema with version: 1 Current version of schema `db`: 1 Schema `db` is up to date. No migration necessary.``` 