can i have this below mongoose model in prisma ``` import { Schema, model } from 'mongoose'; const CatalogSchema = new Schema<any>({}, { timestamps: true, strict: false }); const Catalog = model<any>('catalogs', CatalogSchema); export default Catalog; ```