using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; namespace Iceshrimp.Backend.Core.Database.Tables; [Table("note_watching")] [Index(nameof(NoteId))] [Index(nameof(CreatedAt))] [Index(nameof(NoteUserId))] [Index(nameof(UserId), nameof(NoteId), IsUnique = true)] [Index(nameof(UserId))] public class NoteWatching { [Key] [Column("id")] [StringLength(32)] public string Id { get; set; } = null!; /// /// The created date of the NoteWatching. /// [Column("createdAt")] public DateTime CreatedAt { get; set; } /// /// The watcher ID. /// [Column("userId")] [StringLength(32)] public string UserId { get; set; } = null!; /// /// The target Note ID. /// [Column("noteId")] [StringLength(32)] public string NoteId { get; set; } = null!; /// /// [Denormalized] /// [Column("noteUserId")] [StringLength(32)] public string NoteUserId { get; set; } = null!; [ForeignKey(nameof(NoteId))] [InverseProperty(nameof(Tables.Note.NoteWatchings))] public virtual Note Note { get; set; } = null!; [ForeignKey(nameof(UserId))] [InverseProperty(nameof(Tables.User.NoteWatchings))] public virtual User User { get; set; } = null!; private class EntityTypeConfiguration : IEntityTypeConfiguration { public void Configure(EntityTypeBuilder entity) { entity.Property(e => e.CreatedAt).HasComment("The created date of the NoteWatching."); entity.Property(e => e.NoteId).HasComment("The target Note ID."); entity.Property(e => e.NoteUserId).HasComment("[Denormalized]"); entity.Property(e => e.UserId).HasComment("The watcher ID."); entity.HasOne(d => d.Note) .WithMany(p => p.NoteWatchings) .OnDelete(DeleteBehavior.Cascade); entity.HasOne(d => d.User) .WithMany(p => p.NoteWatchings) .OnDelete(DeleteBehavior.Cascade); } } }