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
@@ -32,7 +32,7 @@ namespace Infrastructure.Migrations
{
Id = table.Column<Guid>(type: "uuid", nullable: false),
UserId = table.Column<Guid>(type: "uuid", nullable: false),
Description = table.Column<byte[]>(type: "bytea", nullable: false)
Content = table.Column<byte[]>(type: "bytea", nullable: false)
},
constraints: table =>
{
@@ -40,7 +40,7 @@ namespace Infrastructure.Migrations
});
migrationBuilder.CreateTable(
name: "Pacients",
name: "Patients",
columns: table => new
{
Id = table.Column<Guid>(type: "uuid", nullable: false),
@@ -64,7 +64,7 @@ namespace Infrastructure.Migrations
name: "MedicalHistories");
migrationBuilder.DropTable(
name: "Pacients");
name: "Patients");
}
}
}