Initial commit
This commit is contained in:
12
node_modules/drizzle-orm/primary-key.js
generated
vendored
Normal file
12
node_modules/drizzle-orm/primary-key.js
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
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
|
||||
Reference in New Issue
Block a user