Advertisement
Guest User

Untitled

a guest
May 12th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.flywaydb</groupId>
  3. <artifactId>flyway-maven-plugin</artifactId>
  4. <version>4.0</version>
  5. <configuration>
  6. <url>jdbc:mysql://192.168.99.100:3306</url>
  7. <user>root</user>
  8. <password>mypassword</password>
  9. <schemas>
  10. <schema>stage</schema>
  11. <schema>public</schema>
  12. </schemas>
  13. </configuration>
  14. </plugin>
  15.  
  16. [INFO] Database: jdbc:mysql://192.168.99.100:3306 (MySQL 5.7)
  17. [INFO] Successfully validated 3 migrations (execution time 00:00.013s)
  18. [INFO] Creating schema `stage` ...
  19. [INFO] Creating schema `public` ...
  20. [INFO] Creating Metadata table: `stage`.`schema_version`
  21. [INFO] Current version of schema `stage`: 0
  22. [INFO] Migrating schema `stage` to version 1 - initialize schema
  23. [INFO] Migrating schema `stage` to version 2 - seed users
  24. [INFO] Migrating schema `stage` to version 3 - create read items proc
  25. [WARNING] DB: PROCEDURE stage.read_items does not exist (SQL State: 42000 - Error Code: 1305)
  26. [INFO] Successfully applied 3 migrations to schema `stage` (execution time 00:01.824s).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement