Forest Admin - API reference
    Preparing search index...
    type Table = {
        columns: {
            allowNull: boolean;
            autoIncrement: boolean;
            constraints: { column: string; table: string }[];
            defaultValue: unknown;
            isLiteralDefaultValue: boolean;
            name: string;
            primaryKey: boolean;
            type: ColumnType;
        }[];
        name: string;
        schema: string
        | undefined;
        unique: string[][];
    }
    Index

    Properties

    columns: {
        allowNull: boolean;
        autoIncrement: boolean;
        constraints: { column: string; table: string }[];
        defaultValue: unknown;
        isLiteralDefaultValue: boolean;
        name: string;
        primaryKey: boolean;
        type: ColumnType;
    }[]
    name: string
    schema: string | undefined
    unique: string[][]