Files
Camilla Schoeser 6a71f91e2f ajout du site
2026-05-29 21:38:59 +02:00

12 lines
253 B
JavaScript

import { entityKind } from "./entity.js";
class PrimaryKey {
constructor(table, columns) {
this.table = table;
this.columns = columns;
}
static [entityKind] = "PrimaryKey";
}
export {
PrimaryKey
};
//# sourceMappingURL=primary-key.js.map