Browse Source
Merge pull request #1450 from colinin/add-missing-entity
fix: Add the missing entity references
pull/1455/head
yx lin
6 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
0 deletions
-
aspnet-core/aspire/LINGYUN.Abp.MicroService.MessageService.EntityFrameworkCore/MessageServiceMigrationsDbContext.cs
|
|
@ -44,6 +44,8 @@ public class MessageServiceMigrationsDbContext : |
|
|
|
|
|
|
|
|
public DbSet<UserSubscribe> UserSubscribes { get; set; } |
|
|
public DbSet<UserSubscribe> UserSubscribes { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
public DbSet<NotificationSendRecord> NotificationSendRecords { get; set; } |
|
|
|
|
|
|
|
|
public MessageServiceMigrationsDbContext(DbContextOptions<MessageServiceMigrationsDbContext> options) |
|
|
public MessageServiceMigrationsDbContext(DbContextOptions<MessageServiceMigrationsDbContext> options) |
|
|
: base(options) |
|
|
: base(options) |
|
|
{ |
|
|
{ |
|
|
|