Skip to content

Add support for 'pass through' column info #34

Closed
@brweber2

Description

@brweber2

This would enable db specific column info. For example, on a table create:

db.createTable( 'name', {
id: { type: 'uuid',
passthrough: true,
primaryKey: true
}
}

If an unrecognized type is found and passthrough is not explicitly set to true, you could throw an error. If passthrough is true, just write out the value to a string and try to execute the sql...

This would enable me to maintain my table info in a consistent, declarative manner instead of having to sometimes drop down to executing full blown native sql queries.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions