Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. const todoSchema = new mongoose.Schema({
  2. description: { type: String, require: true },
  3. done: { type: Boolean, require: true },
  4. createdAt: { type: Date }
  5. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement