mirror of
https://github.com/franjsco/tick3t-api
synced 2025-06-05 22:09:20 +02:00
feat(database): add tickets model
This commit is contained in:
66
src/models/tickets.js
Normal file
66
src/models/tickets.js
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
const mongoose = require('mongoose');
|
||||||
|
const mongoosePaginate = require('mongoose-paginate-v2');
|
||||||
|
|
||||||
|
// Define a schema
|
||||||
|
const { Schema } = mongoose;
|
||||||
|
|
||||||
|
const TicketSchema = new Schema({
|
||||||
|
ticketId: {
|
||||||
|
type: String,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
status: {
|
||||||
|
type: String,
|
||||||
|
trim: true,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
created: {
|
||||||
|
type: Date,
|
||||||
|
trim: true,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
updated: {
|
||||||
|
type: Date,
|
||||||
|
trim: true,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
firstName: {
|
||||||
|
type: String,
|
||||||
|
trim: true,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
lastName: {
|
||||||
|
type: String,
|
||||||
|
trim: true,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
email: {
|
||||||
|
type: String,
|
||||||
|
trim: true,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
type: {
|
||||||
|
type: String,
|
||||||
|
trim: true,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
subject: {
|
||||||
|
type: String,
|
||||||
|
trim: true,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
message: {
|
||||||
|
type: String,
|
||||||
|
trim: true,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
note: {
|
||||||
|
type: String,
|
||||||
|
trim: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
TicketSchema.plugin(mongoosePaginate);
|
||||||
|
|
||||||
|
|
||||||
|
export default mongoose.model('Ticket', TicketSchema);
|
Reference in New Issue
Block a user