scalikejdbc.mapper.Column.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalikejdbc-mapper-generator-core_2.12 Show documentation
Show all versions of scalikejdbc-mapper-generator-core_2.12 Show documentation
scalikejdbc-mapper-generator-core
The newest version!
package scalikejdbc.mapper
import java.sql.JDBCType
case class Column(
name: String,
dataType: JDBCType,
isNotNull: Boolean,
isAutoIncrement: Boolean
)