Documentation
    Preparing search index...

    Interface SqliteColumnDescription

    interface SqliteColumnDescription {
        allowNull: boolean;
        autoIncrement: boolean;
        comment: string | null;
        defaultValue: string;
        primaryKey: boolean;
        references?: { key: string; table: string };
        type: string;
        unique?: boolean;
    }

    Hierarchy (View Summary)

    Index
    allowNull: boolean
    autoIncrement: boolean
    comment: string | null
    defaultValue: string
    primaryKey: boolean
    references?: { key: string; table: string }
    type: string
    unique?: boolean