Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DropSchemaBuilder

class DropSchemaBuilder implements OperationNodeSource, Compilable {
constructor(props: DropSchemaBuilderProps);
$call<T>(func: (qb: this) => T): T;
cascade(): DropSchemaBuilder;
compile(): CompiledQuery;
execute(): Promise<void>;
ifExists(): DropSchemaBuilder;
toOperationNode(): DropSchemaNode;
}

§Implements

§Constructors

§
new DropSchemaBuilder(props: DropSchemaBuilderProps)
[src]

§Methods

§
$call<T>(func: (qb: this) => T): T
[src]

Simply calls the provided function passing this as the only argument. $call returns what the provided function returns.

§
execute(): Promise<void>
[src]
§
toOperationNode(): DropSchemaNode
[src]