| 123456789101112 |
- const mongoose = require('mongoose');
- const Schema = mongoose.Schema;
- const CommitSchema = new Schema({
- 'commit-times': Number,
- 'valid-commit-times': Number,
- 'buglist-commit': Number,
- 'feature-commit': Number,
- 'commit-msg-overview': [String]
- });
- module.exports = CommitSchema;
|