AVEdate / chat-ui-main /src /lib /migrations /routines /07-reset-tools-in-settings.ts
zeroMN's picture
Upload 517 files
8d88d9b verified
raw
history blame contribute delete
423 Bytes
import type { Migration } from ".";
import { collections } from "$lib/server/database";
import { ObjectId } from "mongodb";
const resetTools: Migration = {
_id: new ObjectId("000000000000000000000007"),
name: "Reset tools to empty",
up: async () => {
const { settings } = collections;
await settings.updateMany({}, { $set: { tools: [] } });
return true;
},
runEveryTime: false,
};
export default resetTools;