Skip to content

Commit

Permalink
Merge pull request #6 from GeckoBoy84/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
GeckoBoy84 authored Apr 7, 2022
2 parents 22d3c1a + b420234 commit f58300a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ To setup the bot, insert all values into the `config.json` file located in `/set
We have partnered with [ScarceHost.uk](https://cp.scarcehost.uk) to provide a custom pterodactyl egg for installing your own custom instance.

The public bot inviteable [here](https://discord.gg/AMCTzrmRPY) and will receive updates and bug fixes prior to this source code to ensure stability.

Join our [Support Server](https://discord.gg/AMCTzrmRPY)
15 changes: 15 additions & 0 deletions models/prefix.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
const mongoose = require('mongoose');

const PrefixScheme = new mongoose.Schema({
GUILDID: {
type: String,
required: true
},
PREFIX: {
type: String,
required: true
}
});

const prefix = mongoose.model('prefix', PrefixScheme);
module.exports = prefix;

0 comments on commit f58300a

Please sign in to comment.