com.sxtanna.db.struct.statement.create.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Kuery Show documentation
Show all versions of Kuery Show documentation
MySQL Kotlin DSL/ORM based on HikariCP
package com.sxtanna.db.struct.statement
import com.sxtanna.db.struct.Table
/**
* An object that can create a table in a database
*/
interface Creator {
/**
* Create a table in the database, if it doesn't exist
* * Executed automatically
*/
fun create(table : Table)
/**
* An object that can create its table
*/
interface TableCreator {
/**
* @see [Creator.create]
*/
fun create()
}
}