DIR : /home/kozerus/public_html/cropex/node/node_modules/drizzle-orm/gel-core/columns/uuid.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 GelUUIDBuilder extends GelColumnBuilder {
  static [entityKind] = "GelUUIDBuilder";
  constructor(name) {
    super(name, "string", "GelUUID");
  }
  /** @internal */
  build(table) {
    return new GelUUID(table, this.config);
  }
}
class GelUUID extends GelColumn {
  static [entityKind] = "GelUUID";
  getSQLType() {
    return "uuid";
  }
}
function uuid(name) {
  return new GelUUIDBuilder(name ?? "");
}
export {
  GelUUID,
  GelUUIDBuilder,
  uuid
};
//# sourceMappingURL=uuid.js.map
//


koh5_pano



Your browser does not support the HTML5 canvas element.


Drag mouse to navigate.

Navigation





17.Aug.2010, Martin Wengenmayer