From 3380f50cc7512b4e78df7cf03386158459458cca Mon Sep 17 00:00:00 2001 From: Infendro Date: Sat, 13 Dec 2025 23:11:46 +0100 Subject: [PATCH] update README --- README.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 43af62f..6e87166 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,6 @@ -# Ktor Plugin for Database Migration +# migration-ktor -This plugin enables code-based database migrations in Ktor using [Kotlin Database Migration](https://git.infendro.com/Infendro/kotlin-migration). - -## 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. +`migration-ktor` is a Kotlin library that enables code-based migrations in Ktor. ## Installation @@ -18,7 +12,7 @@ repositories { } dependencies { - implementation("com.infendro:ktor-migration:1.1.0") + implementation("com.infendro:ktor-migration:1.1.1") } ```