Anorm はいやだ。他のライブラリ使いたい!
scalikejdbc を使おう。
scalikejdbc-play-plugin は DBPlugin 非依存。
Evolutions は DBPlugin 依存だから DBPlugin を無効にできない。
...困った。
libraryDependencies += "com.github.tototoshi" %% "play-flyway" % "1.0.0"play.plugins
1000:com.github.tototoshi.play2.flyway.Plugin
playapp ├── app │ ├── controllers │ ├── models │ └── views ├── conf │ ├── application.conf │ ├── db │ │ └── migration │ │ ├── default │ │ │ ├── V1__Create_person_table.sql │ │ │ └── V2__Add_people.sql │ │ └── secondary │ │ ├── V1__create_job_table.sql │ │ └── V2__Add_job.sql │ ├── play.plugins │ └── routes
CREATE TABLE job ( id integer primary key, name varchar(200) not null );