Genres/schema: fix spelling

This commit is contained in:
Toast 2025-02-07 13:54:42 +01:00
parent a3dd007bde
commit 66ccbe88e9

View file

@ -2,5 +2,5 @@ import { Schema } from 'mongoose';
export const GenreSchema = new Schema({
name: { type: String, required: true },
showsIDs: [{ type: Schema.Types.ObjectId, ref: 'Show' }],
showIDs: [{ type: Schema.Types.ObjectId, ref: 'Show' }],
});