MaterializedViewBuilderCore
class MaterializedViewBuilderCore<TConfig extends { }
name: string;
columns?: unknown;
}> {constructor(name: TConfig["name"], schema: string | undefined);
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"];
};tablespace(tablespace: string): this;
using(using: string): this;
withNoData(): this;
§Constructors
§Properties
§
config: {
[src]with?: PgMaterializedViewWithConfig;
using?: string;
tablespace?: string;
withNoData?: boolean;
}§Methods
§
with(config: PgMaterializedViewWithConfig): this
[src]