Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | 1x 1x 1x 1x 1x 1x 1x 7x | import mongoose, { ObjectId } from 'mongoose'
import { updateIfCurrentPlugin } from 'mongoose-update-if-current'
interface TicketAttributes {
title: string;
price: number;
owner: string;
orderId?: string;
createdAt?: Date;
updatedAt?: Date;
}
const ticketSchema = new mongoose.Schema({
title: {
type: String,
required: true
},
price: {
type: Number,
required: true
},
owner: {
type: mongoose.Schema.Types.ObjectId,
required: true
},
orderId: {
type: String
}
}, {
toJSON: {
transform (doc, ret) {
ret.id = ret._id
delete ret._id
delete ret.password
}
}
})
ticketSchema.set('versionKey', 'version')
ticketSchema.plugin(updateIfCurrentPlugin)
export const TicketModel = mongoose.model('Ticket', ticketSchema)
export default class Ticket extends TicketModel {
constructor(attributes: TicketAttributes) {
super(attributes)
}
}
|