Packages

object ColumnOption

The basic column options that influence profile-independent parts of query compilation. Different profile levels define additional options.

Source
ColumnOption.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ColumnOption
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. case object AutoInc extends ColumnOption[Nothing] with Product with Serializable

    Mark a column as auto-incrementing / automatically generated.

    Mark a column as auto-incrementing / automatically generated. This option is usually combined with PrimaryKey.

  2. case object PrimaryKey extends ColumnOption[Nothing] with Product with Serializable

    Mark a column as the table's primary key.

    Mark a column as the table's primary key. For named and composite primary keys you have to use the Table's primaryKey method instead.

  3. case object Unique extends ColumnOption[Nothing] with Product with Serializable