TenantAtlas/apps/platform/.pnpm-store/v10/files/8b/e4898c9b5128ceded90188869875e1392232d428a7aa75a88de3b746d5ea5ded1a279edaa9b3324c0256fa0598fc2b0657890bc8c324e111c47889f5885e3a
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

12 lines
253 B
Plaintext

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