6 lines
182 B
TypeScript
6 lines
182 B
TypeScript
import { Schema } from 'mongoose';
|
|
|
|
export const GenreSchema = new Schema({
|
|
name: { type: String, required: true },
|
|
showsIDs: [{ type: Schema.Types.ObjectId, ref: 'Show' }],
|
|
});
|