Files
helsinki/Pt12/part12-containers-applications/todo-app/todo-backend/mongo/models/Todo.js
T
2024-09-30 15:32:50 +03:00

8 lines
166 B
JavaScript
Executable File

const mongoose = require('mongoose')
const todoSchema = new mongoose.Schema({
text: String,
done: Boolean
})
module.exports = mongoose.model('Todo', todoSchema)