mirror of
https://gitee.com/doramart/DoraCMS.git
synced 2024-12-02 12:17:48 +08:00
32 lines
704 B
JavaScript
32 lines
704 B
JavaScript
/**
|
|
* Created by Administrator on 2015/4/15.
|
|
* 管理员对象
|
|
*/
|
|
var mongoose = require('mongoose');
|
|
var shortid = require('shortid');
|
|
var Schema = mongoose.Schema;
|
|
|
|
//mongoose.connect("mongodb://localhost/doracms")
|
|
|
|
var adminUser = new Schema({
|
|
_id: {
|
|
type: String,
|
|
unique: true,
|
|
'default': shortid.generate
|
|
},
|
|
name: String,
|
|
username : String,
|
|
password: String,
|
|
email : String,
|
|
phoneNum : Number,
|
|
comments : String,
|
|
date: { type: Date, default: Date.now },
|
|
logo: { type: String, default: "/upload/images/defaultlogo.png" },
|
|
group: String
|
|
});
|
|
|
|
var AdminUser = mongoose.model("AdminUser",adminUser);
|
|
|
|
module.exports = AdminUser;
|
|
|