CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
primary-key.js12 linesDownload Raw Back to drizzle-orm
1import { entityKind } from "./entity.js";2class PrimaryKey {3  constructor(table, columns) {4    this.table = table;5    this.columns = columns;6  }7  static [entityKind] = "PrimaryKey";8}9export {10  PrimaryKey11};12//# sourceMappingURL=primary-key.js.map