Column

scalikejdbc.metadata.Column
case class Column(name: String, typeCode: Int, typeName: String, size: Int, isRequired: Boolean, isPrimaryKey: Boolean, isAutoIncrement: Boolean, description: String, defaultValue: String)

Column meta data

Value parameters

defaultValue

default value

description

comment

isAutoIncrement

auto increment

isPrimaryKey

primary key

isRequired

not null

name

name

size

size

typeCode

type code(int)

typeName

type name

Attributes

Source
Column.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product