io.tcds.orm.migrations
Owner: Thiago Cordeiro
Migration tool for Kotlin Simple ORM
https://github.com/tcds-io/kotlin-orm-migrations
Sources: https://github.com/tcds-io/kotlin-orm-migrations
Version 0.1.6 (latest)
0.1.6
Created 01 November 2023.
Migration tool for Kotlin Simple ORM
Using the plugins DSL:
plugins {
id("io.tcds.orm.migrations") version "0.1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.tcds.orm:migrations:0.1.6")
}
}
apply(plugin = "io.tcds.orm.migrations")
Using the plugins DSL:
plugins {
id "io.tcds.orm.migrations" version "0.1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.tcds.orm:migrations:0.1.6"
}
}
apply plugin: "io.tcds.orm.migrations"