| 123456789101112131415161718192021222324252627 |
- import { entityKind } from "../../entity.js";
- import { PgColumn, PgColumnBuilder } from "./common.js";
- class PgBooleanBuilder extends PgColumnBuilder {
- static [entityKind] = "PgBooleanBuilder";
- constructor(name) {
- super(name, "boolean", "PgBoolean");
- }
- /** @internal */
- build(table) {
- return new PgBoolean(table, this.config);
- }
- }
- class PgBoolean extends PgColumn {
- static [entityKind] = "PgBoolean";
- getSQLType() {
- return "boolean";
- }
- }
- function boolean(name) {
- return new PgBooleanBuilder(name ?? "");
- }
- export {
- PgBoolean,
- PgBooleanBuilder,
- boolean
- };
- //# sourceMappingURL=boolean.js.map
|