@valon-technologies/gestalt
    Preparing search index...

    Column definition for an object store schema.

    interface ColumnSchema {
        name: string;
        type?: ColumnType;
        primaryKey?: boolean;
        notNull?: boolean;
        unique?: boolean;
    }
    Index

    Properties

    name: string
    type?: ColumnType
    primaryKey?: boolean
    notNull?: boolean
    unique?: boolean