bergere-enchantee / src /lib /server /db /picture-collection.ts
coyotte508's picture
coyotte508 HF staff
♻️ Migrate pictures to Object Storage
142fc6a
raw
history blame
217 Bytes
import type { Picture } from '$lib/types/Picture';
import type { Collection, Db } from 'mongodb';
export function createPictureCollections(db: Db): Collection<Picture> {
return db.collection<Picture>('pictures');
}