Interface ISqlColumn

interface ISqlColumn {
    dataType: "string" | "number" | "boolean" | "timestamp" | "null";
    isNullable?: boolean;
    name: string;
    tableName: string;
}

Properties

dataType: "string" | "number" | "boolean" | "timestamp" | "null"
isNullable?: boolean
name: string
tableName: string

Generated using TypeDoc