Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Mistydz authored Aug 14, 2021
1 parent 11aa477 commit 9204b5d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions models/user.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const mongoose = require("mongoose");
const user = new mongoose.Schema({
username: String,
password: String,
});

module.exports = mongoose.model("User", user);

0 comments on commit 9204b5d

Please sign in to comment.