Danulsan

Untitled

Jun 27th, 2023
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. const { model, Schema } = require("mongoose");
  2.  
  3. let ticketSchema = new Schema({
  4. Guild: String,
  5. Channel: String,
  6. Ticket: String,
  7. });
  8.  
  9. module.exports = model("ticketSchema", ticketSchema);
Add Comment
Please, Sign In to add comment