Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
21 lines
668 B
Plaintext
21 lines
668 B
Plaintext
import { extendDrizzleTable } from './extendDrizzleTable.js';
|
|
export const executeSchemaHooks = async ({ type, adapter })=>{
|
|
for (const hook of adapter[type]){
|
|
const result = await hook({
|
|
adapter: adapter,
|
|
extendTable: extendDrizzleTable,
|
|
schema: {
|
|
enums: adapter.enums,
|
|
relations: adapter.relations,
|
|
tables: adapter.tables
|
|
}
|
|
});
|
|
if (result.enums) {
|
|
adapter.enums = result.enums;
|
|
}
|
|
adapter.tables = result.tables;
|
|
adapter.relations = result.relations;
|
|
}
|
|
};
|
|
|
|
//# sourceMappingURL=executeSchemaHooks.js.map |