@palmares/drizzle-engine
Version:
This is the engine that wraps the hole drizzle interface in a way palmares can understand and have full control of
17 lines (15 loc) • 502 B
JavaScript
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
// src/exceptions.ts
var UnsupportedFieldTypeError = class _UnsupportedFieldTypeError extends Error {
static {
__name(this, "UnsupportedFieldTypeError");
}
constructor(fieldType) {
super(`Field type ${fieldType} is not supported by @palmares/sequelize-engine`);
this.name = _UnsupportedFieldTypeError.name;
}
};
export {
UnsupportedFieldTypeError
};