43 lines
913 B
Plaintext
43 lines
913 B
Plaintext
import { entityKind } from "../../entity.js";
|
|
import { PgColumn, PgColumnBuilder } from "./common.js";
|
|
class PgJsonbBuilder extends PgColumnBuilder {
|
|
static [entityKind] = "PgJsonbBuilder";
|
|
constructor(name) {
|
|
super(name, "json", "PgJsonb");
|
|
}
|
|
/** @internal */
|
|
build(table) {
|
|
return new PgJsonb(table, this.config);
|
|
}
|
|
}
|
|
class PgJsonb extends PgColumn {
|
|
static [entityKind] = "PgJsonb";
|
|
constructor(table, config) {
|
|
super(table, config);
|
|
}
|
|
getSQLType() {
|
|
return "jsonb";
|
|
}
|
|
mapToDriverValue(value) {
|
|
return JSON.stringify(value);
|
|
}
|
|
mapFromDriverValue(value) {
|
|
if (typeof value === "string") {
|
|
try {
|
|
return JSON.parse(value);
|
|
} catch {
|
|
return value;
|
|
}
|
|
}
|
|
return value;
|
|
}
|
|
}
|
|
function jsonb(name) {
|
|
return new PgJsonbBuilder(name ?? "");
|
|
}
|
|
export {
|
|
PgJsonb,
|
|
PgJsonbBuilder,
|
|
jsonb
|
|
};
|
|
//# sourceMappingURL=jsonb.js.map |