Packages

case class UpScript(evolution: Evolution) extends Script with Product with Serializable

An UP Script to run on the database.

evolution

the original evolution

Source
Evolutions.scala
Linear Supertypes
Serializable, Product, Equals, Script, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UpScript
  2. Serializable
  3. Product
  4. Equals
  5. Script
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new UpScript(evolution: Evolution)

    evolution

    the original evolution

Value Members

  1. val evolution: Evolution

    Original evolution.

    Original evolution.

    Definition Classes
    UpScriptScript
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. def sql: String

    The complete SQL to be run.

    The complete SQL to be run.

    Definition Classes
    UpScriptScript
  4. def statements: Seq[String]

    The sql string separated into constituent ";"-delimited statements.

    The sql string separated into constituent ";"-delimited statements.

    Any ";;" found in the sql are escaped to ";".

    Definition Classes
    Script