CompilationDO

/**
* @brief DO class: A compilation.
*/

Primary key: oid: int

schema CompilationDO {
  @primary oid: int,
  cwd: string
}

CompilationDO::getCwd

/**
* @brief gets the cwd of this element.
* @return string
*/
pub fn getCwd(self: CompilationDO) -> string;

CompilationDO::__all__

Data constraint method.

pub fn __all__(db: GoDB) -> *CompilationDO;