Sask Vaccine Guide Code Docs
    Preparing search index...

    Interface ColumnMetadata

    interface ColumnMetadata {
        isList?: boolean;
        isNullable?: boolean;
        isPrimary?: boolean;
        isUnique?: boolean;
        name?: string;
        propertyKey: string;
        tsType?: any;
        type?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    isList?: boolean

    Set to store a list of elements as a json

    isNullable?: boolean

    Can the row hold the value of null, false by default

    isPrimary?: boolean

    Is it the primary key column

    isUnique?: boolean

    Must every value in this column be unique, false by default

    name?: string

    The name of the row in the db

    propertyKey: string

    The attribute name

    tsType?: any

    typescript type, either tsType or type must be set. type takes presedence over tsType

    type?: string

    The sql row type, either tsType or type must be set. type takes presedence over tsType