Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/drizzle/pg-core.ts>MaterializedViewBuilderCore

Deno port of the drizzle-orm library
Latest
class MaterializedViewBuilderCore
import { MaterializedViewBuilderCore } from "https://deno.land/x/drizzle@v0.23.85/pg-core.ts";

Constructors

new
MaterializedViewBuilderCore(name: TConfig["name"], schema: string | undefined)

Type Parameters

TConfig extends { name: string; columns?: unknown; }

Properties

protected
config: { with?: PgMaterializedViewWithConfig; using?: string; tablespace?: string; withNoData?: boolean; }
protected
name: TConfig["name"]
protected
schema: string | undefined
_: { readonly name: TConfig["name"]; readonly columns: TConfig["columns"]; }

Methods

tablespace(tablespace: string): this
using(using: string): this
withNoData(): this