banana
/
definma-api
Archived
2
Fork 0
This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
definma-api/src/models/prediction.ts

13 lines
240 B
TypeScript

import mongoose from 'mongoose';
const PredictionSchema = new mongoose.Schema({
name: {
type: String,
unique: true
},
value: Number
});
export default mongoose.model<any, mongoose.Model<any, any>>('prediction', PredictionSchema);