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

14 lines
388 B

const mongoose = require('mongoose');
module.exports = mongoose.model('checklist', new mongoose.Schema({
id: String,
ownerId: String,
name: String,
description: String,
image: String,
children: {type: [{
list: Boolean,
id: String
}], default: []},
archived: {type: Boolean, default: false},
assignees: {type: [String], default: []}
}));