update README

This commit is contained in:
2025-12-13 23:04:44 +01:00
parent d5f6c2dac8
commit dd5a3d70c3

View File

@@ -1,12 +1,6 @@
# Kotlin Database Migration # migration-kt
This library enables code-based database migrations in Kotlin. `migration-kt` is a Kotlin library that enables code-based migrations.
## Features
* Declare database migrations (identified by a unique name).
* Migrations are executed in the order they are declared in.
* Executed migrations are tracked in a database table and skipped on subsequent runs.
## Installation ## Installation
@@ -18,7 +12,7 @@ repositories {
} }
dependencies { dependencies {
implementation("com.infendro:migration:1.1.0") implementation("com.infendro:migration:1.1.1")
} }
``` ```