All Downloads are FREE. Search and download functionalities are using the official Maven repository.

harness.sql.autoSchema.PlannedMigrations.scala Maven / Gradle / Ivy

There is a newer version: 5.1.3
Show newest version
package harness.sql.autoSchema

import cats.data.NonEmptyList

final case class PlannedMigrations(migrations: NonEmptyList[InMemoryMigration])
object PlannedMigrations {

  def apply(migration0: InMemoryMigration, migrationN: InMemoryMigration*): PlannedMigrations =
    PlannedMigrations(NonEmptyList(migration0, migrationN.toList))

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy