Files
migration.kt/README.md
2026-04-16 16:11:47 +00:00

35 lines
621 B
Markdown

# migration.kt
`migration.kt` is a Kotlin library that enables code-based migrations.
## Installation
Add the following to your `build.gradle.kts`.
```kotlin
repositories {
maven("https://git.infendro.com/api/packages/Infendro/maven")
}
dependencies {
implementation("com.infendro:migration:1.2.0")
}
```
## Usage
```kotlin
fun configureDatabase() {
// connect to a database
Database.connect(/* parameters */)
// declare and execute migrations
migrate {
// create a migration
migration("initial") {
// execute code to migrate the database
}
}
}
```