fix(api): nlp-sample schema remove unique from text field

This commit is contained in:
yassinedorbozgithub 2024-10-10 19:12:03 +01:00
parent 5681a810aa
commit bc54f45e2c

View File

@ -23,7 +23,7 @@ export class NlpSampleStub extends BaseSchema {
/** /**
* The content of the sample. * The content of the sample.
*/ */
@Prop({ type: String, required: true, unique: true }) @Prop({ type: String, required: true })
text: string; text: string;
/** /**