summary refs log tree commit diff
path: root/src/db/schemas/userSchema.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/db/schemas/userSchema.js')
-rw-r--r--src/db/schemas/userSchema.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/db/schemas/userSchema.js b/src/db/schemas/userSchema.js
new file mode 100644

index 0000000..eaddb08 --- /dev/null +++ b/src/db/schemas/userSchema.js
@@ -0,0 +1,14 @@ +import { model, Schema } from "mongoose"; + +export const userSchema = new Schema({ + username: { + type: String, + required: true, + unique: true, + trim: true, + }, +}); + +export const User = model("user", userSchema); + +console.log("[MONGODB] User schema initialized successfully!");