mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-18 11:02:26 +00:00
12 lines
343 B
CoffeeScript
12 lines
343 B
CoffeeScript
|
mongoose = require 'mongoose'
|
||
|
Schema = mongoose.Schema
|
||
|
ObjectId = Schema.ObjectId
|
||
|
|
||
|
InstitutionSchema = new Schema
|
||
|
v1Id: { type: Number, required: true }
|
||
|
managerIds: [ type:ObjectId, ref:'User' ]
|
||
|
|
||
|
mongoose.model 'Institution', InstitutionSchema
|
||
|
exports.Institution = mongoose.model 'Institution'
|
||
|
exports.InstitutionSchema = InstitutionSchema
|