DIR : /home/kozerus/public_html/cropex/node/node_modules/drizzle-orm/gel-core/columns/localtime.js
/home/kozerus/public_html/cropex/node/node_modules/drizzle-orm/gel-core/columns
import { entityKind } from "../../entity.js";
import { GelColumn } from "./common.js";
import { GelLocalDateColumnBaseBuilder } from "./date.common.js";
class GelLocalTimeBuilder extends GelLocalDateColumnBaseBuilder {
static [entityKind] = "GelLocalTimeBuilder";
constructor(name) {
super(name, "localTime", "GelLocalTime");
}
/** @internal */
build(table) {
return new GelLocalTime(
table,
this.config
);
}
}
class GelLocalTime extends GelColumn {
static [entityKind] = "GelLocalTime";
getSQLType() {
return "cal::local_time";
}
}
function localTime(name) {
return new GelLocalTimeBuilder(name ?? "");
}
export {
GelLocalTime,
GelLocalTimeBuilder,
localTime
};
//# sourceMappingURL=localtime.js.map
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer