fix: made descriptions into strings

This commit is contained in:
mrjvs
2025-09-04 01:04:14 +02:00
parent 8e12aac2eb
commit 27aac551cb

View File

@@ -15,7 +15,7 @@ const TaskSchema = new mongoose.Schema<ITask, TaskModel, ITaskMethods>({
enum: ['open'] // TODO - What else is there?
},
title_id: String,
description: Number,
description: String,
created: BigInt,
updated: BigInt
}, { id: false });