Natsuki's API! https://api.natsuki.app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
api/db/ani/users.js

10 lines
306 B

const {Schema} = require("mongoose");
module.exports = (connection) => connection.model('users', new Schema({
name: String,
id: {type: String, unique: true},
discord: {type: String, unique: true},
permissions: [String],
password: String,
apiToken: {type: String, unique: true}
}));