primary-key.js 253 B

123456789101112
  1. import { entityKind } from "./entity.js";
  2. class PrimaryKey {
  3. constructor(table, columns) {
  4. this.table = table;
  5. this.columns = columns;
  6. }
  7. static [entityKind] = "PrimaryKey";
  8. }
  9. export {
  10. PrimaryKey
  11. };
  12. //# sourceMappingURL=primary-key.js.map