TenantAtlas/apps/platform/.pnpm-store/v10/files/20/7f23be421284ef5f044cb2fb5241806d9db721bba907a1dd177c82a39f7252473c785d907874c23136c460c88e7bb2a458273f070c93a3f25b73a130edb048
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

42 lines
1022 B
Plaintext

import { entityKind } from "../entity.js";
import { SQLiteTable } from "./table.js";
function primaryKey(...config) {
if (config[0].columns) {
return new PrimaryKeyBuilder(config[0].columns, config[0].name);
}
return new PrimaryKeyBuilder(config);
}
class PrimaryKeyBuilder {
static [entityKind] = "SQLitePrimaryKeyBuilder";
/** @internal */
columns;
/** @internal */
name;
constructor(columns, name) {
this.columns = columns;
this.name = name;
}
/** @internal */
build(table) {
return new PrimaryKey(table, this.columns, this.name);
}
}
class PrimaryKey {
constructor(table, columns, name) {
this.table = table;
this.columns = columns;
this.name = name;
}
static [entityKind] = "SQLitePrimaryKey";
columns;
name;
getName() {
return this.name ?? `${this.table[SQLiteTable.Symbol.Name]}_${this.columns.map((column) => column.name).join("_")}_pk`;
}
}
export {
PrimaryKey,
PrimaryKeyBuilder,
primaryKey
};
//# sourceMappingURL=primary-keys.js.map