export const createExtensions = async function() { for(const extension in this.extensions){ if (this.extensions[extension]) { try { await this.drizzle.execute(`CREATE EXTENSION IF NOT EXISTS "${extension}"`); } catch (err) { this.payload.logger.error({ err, msg: `Failed to create extension ${extension}` }); } } } }; //# sourceMappingURL=createExtensions.js.map