DIR : /home/kozerus/public_html/cropex/node/node_modules/drizzle-orm/gel-core/columns/boolean.js

/home/kozerus/public_html/cropex/node/node_modules/drizzle-orm/gel-core/columns

import { entityKind } from "../../entity.js";
import { GelColumn, GelColumnBuilder } from "./common.js";
class GelBooleanBuilder extends GelColumnBuilder {
  static [entityKind] = "GelBooleanBuilder";
  constructor(name) {
    super(name, "boolean", "GelBoolean");
  }
  /** @internal */
  build(table) {
    return new GelBoolean(table, this.config);
  }
}
class GelBoolean extends GelColumn {
  static [entityKind] = "GelBoolean";
  getSQLType() {
    return "boolean";
  }
}
function boolean(name) {
  return new GelBooleanBuilder(name ?? "");
}
export {
  GelBoolean,
  GelBooleanBuilder,
  boolean
};
//# sourceMappingURL=boolean.js.map
//


koh5_pano



Your browser does not support the HTML5 canvas element.


Drag mouse to navigate.

Navigation





17.Aug.2010, Martin Wengenmayer