Skip to content

Commit

Permalink
Merge pull request #195 from Hexastack/184-bug-missing-chat-messages
Browse files Browse the repository at this point in the history
fix(api): nlp-sample schema remove unique from text field
  • Loading branch information
marrouchi authored Oct 11, 2024
2 parents 18378de + bc54f45 commit 3745d14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/nlp/schemas/nlp-sample.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class NlpSampleStub extends BaseSchema {
/**
* The content of the sample.
*/
@Prop({ type: String, required: true, unique: true })
@Prop({ type: String, required: true })
text: string;

/**
Expand Down

0 comments on commit 3745d14

Please sign in to comment.