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