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.
14 lines
388 B
14 lines
388 B
2 years ago
|
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: []}
|
||
|
}));
|