Changelog History
-
v0.3.2
April 24, 2020 -
v0.2.3 Changes
August 10, 2016🆕 New Features
👍 Scala-Forklift now supports a new type of migration:
APIMigration
, where you can use the syntax from slick-migration-api. You can find an example inexample/migrations/src_migrations/main/scala/3.scala
:import slick.migration.api.TableMigrationimport slick.migration.api.H2Dialectimport com.liyaos.forklift.slick.APIMigrationimport datamodel.v2.schema.tables._object M3 { implicit val dialect = new H2DialectMyMigrations.migrations = MyMigrations.migrations :+ APIMigration( 3 )( TableMigration(Users). renameColumn(_.first, "firstname"). renameColumn(_.last, "lastname")) }
To learn more about slick-migration-api, please check https://github.com/nafg/slick-migration-api
🔄 Changes
- 🚀 Scala-Forklift is now released under the Apache 2.0 license. (#26)
👌 Improvements
-
v0.2.2-slick3.2 Changes
July 31, 2016If you are using Scala-Forklift with Slick 3.2.0, this is the version you need. For Slick 3.1.1, please use Scala-Forklift 0.2.2.
👍 This is basically the same version as
v0.2.2
, except for a few changes made to support Slick 3.2.0-M1. The changes include:- 🗄 Stop using all the deprecated classes/methods in Slick 3.2.0-M1.
- 🔄 Change the code generator's
genCode
method to work with the changed behavior of Slick profile'stoString
method.
-
v0.2.1
February 27, 2016 -
v0.2.0
February 27, 2016 -
v0.2.0-BETA
October 15, 2015 -
v0.2.0-ALPHA
September 11, 2015