mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-10-31 19:25:04 +03:00
9 lines
No EOL
237 B
JavaScript
9 lines
No EOL
237 B
JavaScript
const mongoose = require("mongoose")
|
|
|
|
const schema = new mongoose.Schema({
|
|
username: { type: String, unique: true },
|
|
password: String,
|
|
id: { type: String, unique: true }
|
|
});
|
|
|
|
module.exports = mongoose.model('secret', schema); |