Column
annotationin packageklyn.data.sql
public annotation Column(
name as String = "",
nullable as Boolean = true,
length as Int = 255,
precision as Int = 0,
scale as Int = 0
)
Column

Maps one persistent property to a relational column.

Example
@Column(name="login", nullable=false, length=255)
public property login as String