mirror of
https://github.com/ION606/selmerBot.git
synced 2026-05-14 21:26:54 +00:00
11 lines
194 B
JavaScript
11 lines
194 B
JavaScript
const { Schema, model } = require('mongoose');
|
|
|
|
const Guild = Schema({
|
|
id: String,
|
|
prefix: {
|
|
default: '?',
|
|
type: String
|
|
}
|
|
});
|
|
|
|
module.exports = model('Guild', Guild); |