mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
const mongoose = require('mongoose');
|
|
|
|
module.exports.Note = mongoose.model('Note', new mongoose.Schema({
|
|
title: String,
|
|
body: String,
|
|
ownerToken: String,
|
|
isPublic: Boolean
|
|
}));
|