AK-21/Graphite-Industrial-Intelligence
0
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