Module

x/pg_mem/schema/sequence.ts>Sequence

An in memory postgres DB instance for your unit tests
Go to Latest
class Sequence
implements _ISequence
import { Sequence } from "https://dotland.deno.dev/x/pg_mem@2.6.3/schema/sequence.ts";

Constructors

new
Sequence(name: string, ownerSchema: _ISchema)

Properties

private
cfg: { start?: number; max?: number; min?: number; cycle?: boolean; inc?: number; dataType?: _IType; }
private
optional
owner: ISubscription
private
symbol: symbol
readonly
cycle
readonly
dataType
readonly
inc
readonly
max
readonly
min
readonly
reg: Reg
readonly
start
readonly
type: "sequence"