You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: