org.liquibase.kotlin.KotlinDropColumn.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-kotlin-dsl Show documentation
Show all versions of liquibase-kotlin-dsl Show documentation
kotlin dsl plugin for liquibase
The newest version!
package org.liquibase.kotlin
import liquibase.change.ColumnConfig
import liquibase.changelog.DatabaseChangeLog
class KotlinDropColumn(databaseChangeLog: DatabaseChangeLog) : KotlinColumn(databaseChangeLog, { ColumnConfig() }) {
fun column(name: String) {
super.column(name, null, null, null, null, null, null,
null, null, null, null,
null, null, null, null, null,
null, null, null, null, null,
null, null, null)
}
}