harness.sql.autoSchema.PlannedMigrations.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of harness-sql_3 Show documentation
Show all versions of harness-sql_3 Show documentation
Miscellaneous libraries/utilities for Scala.
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