interface AttributeToSqlOptions {
    context: "addColumn" | "changeColumn" | "createTable";
    schema?: string;
    table: string;
    withoutForeignKeyConstraints?: boolean;
}

Properties

context: "addColumn" | "changeColumn" | "createTable"
schema?: string
table: string
withoutForeignKeyConstraints?: boolean