PointHistory.js 574 B

1234567891011121314151617
  1. import mongoose from "mongoose";
  2. const PointHistorySchema = new mongoose.Schema(
  3. {
  4. user: { type: mongoose.Schema.Types.ObjectId, ref: "User", required: true },
  5. points: { type: Number, required: true },
  6. reason: { type: String, required: true },
  7. match: { type: mongoose.Schema.Types.ObjectId, ref: "Match" },
  8. },
  9. { timestamps: true }
  10. );
  11. PointHistorySchema.index({ "user": 1 }); // user 索引
  12. PointHistorySchema.index({ "match": 1 }); // match 索引
  13. export default mongoose.models.PointHistory ||
  14. mongoose.model("PointHistory", PointHistorySchema);