Packages

trait DDL extends SchemaDescriptionDef

Self Type
DDL
Source
SqlProfile.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DDL
  2. SchemaDescriptionDef
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Concrete Value Members

  1. def ++(other: DDL): DDL

    Create a new DDL object which combines this and the other DDL object.

    Create a new DDL object which combines this and the other DDL object.

    Composition is such that given

    A.ddl ++ B.ddl

    the create phases will be run in FIFO order and the drop phases will be run in LIFO order.

    A.ddl ++ B.ddl }}} run in FIFO order and the drop phases will be run in LIFO order.

    Definition Classes
    DDLSchemaDescriptionDef
  2. def createIfNotExistsStatements: Iterator[String]

    All statements to execute for createIfNotExists()

  3. def createStatements: Iterator[String]

    All statements to execute for create()

  4. def dropIfExistsStatements: Iterator[String]

    All statements to execute for dropIfExists()

  5. def dropStatements: Iterator[String]

    All statements to execute for drop()

  6. def equals(o: Any): Boolean
    Definition Classes
    DDL → AnyRef → Any
  7. def hashCode(): Int
    Definition Classes
    DDL → AnyRef → Any
  8. def truncateStatements: Iterator[String]

    All statements to execute for truncate