You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
apl-nuke/src/models/events.js

10 lines
168 B
JavaScript

4 years ago
import { Schema, model } from 'mongoose';
const events = new Schema({
name: {
type: String,
required: true,
},
});
export default model('Events', events);