This commit is contained in:
andrei-mihnea-cerbu
2024-04-08 01:03:59 +03:00
parent b48d5ee19e
commit 61a55fa735
50 changed files with 80 additions and 52 deletions
@@ -51,7 +51,7 @@ namespace Infrastructure.Migrations
.ValueGeneratedOnAdd()
.HasColumnType("uuid");
b.Property<byte[]>("Description")
b.Property<byte[]>("Content")
.IsRequired()
.HasColumnType("bytea");
@@ -63,7 +63,7 @@ namespace Infrastructure.Migrations
b.ToTable("MedicalHistories");
});
modelBuilder.Entity("Core.Entities.Pacient", b =>
modelBuilder.Entity("Core.Entities.Patient", b =>
{
b.Property<Guid>("Id")
.ValueGeneratedOnAdd()
@@ -80,7 +80,7 @@ namespace Infrastructure.Migrations
b.HasKey("Id");
b.ToTable("Pacients");
b.ToTable("Patients");
});
#pragma warning restore 612, 618
}