简体   繁体   中英

what schema evolution should I use while using quill-async-mysql and play 2.6?

Im using quill-async-mysql in my project, and I have a simple db setup in my application.conf :

quilldb {
  host = 127.0.0.1
  port = 3306
  user = root
  password = ""
  database = MyDatabaseName
}

thats it.

And now I want to add some kind of schema evolution to handle my db creations and stuff, and in looking for

a library that will play along nicely with quill-async-mysql and playframework , does anyone hav e some good recommendations?

I heard about flyway but it uses jdbc connection and im using quill-async-mysql , and also looked at playframework evolutions but had some difficulties with the

setup, so I would appreciate any help.

thanks!

I am using quill-async-postgress and Flyway for the migrations, by having two alternative db connections in application.conf, one is used just for Flyway. If you don't mind including jdbc in your build, it is quite straightforward.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM