@social-mail/social-mail-web-server 1.8.399 → 1.8.400

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@social-mail/social-mail-web-server",
3
- "version": "1.8.399",
3
+ "version": "1.8.400",
4
4
  "description": "## Phase 1",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -237,7 +237,8 @@ export class Email {
237
237
  @Column({ dataType: "BigInt" , nullable: true })
238
238
  @RelateTo(Email, {
239
239
  property: (x) => x.lastReply,
240
- inverseProperty: (x) => x.lastRepliedThreads
240
+ inverseProperty: (x) => x.lastRepliedThreads,
241
+ dotNotCreateIndex: true
241
242
  })
242
243
  public lastReplyID: number;
243
244