From 02d8477b052b83ce4df61644b35260f8638d676e Mon Sep 17 00:00:00 2001 From: Kevin Matsubara Date: Mon, 14 Apr 2025 22:14:12 +0200 Subject: [PATCH] Create migration for League soft delete flag. --- ...201323_AddSoftDeleteFlagLeague.Designer.cs | 575 ++++++++++++++++++ .../20250414201323_AddSoftDeleteFlagLeague.cs | 57 ++ ...eadBallZoneLeagueDbContextModelSnapshot.cs | 7 + 3 files changed, 639 insertions(+) create mode 100644 EntityFrameworkCore.Data/Migrations/20250414201323_AddSoftDeleteFlagLeague.Designer.cs create mode 100644 EntityFrameworkCore.Data/Migrations/20250414201323_AddSoftDeleteFlagLeague.cs diff --git a/EntityFrameworkCore.Data/Migrations/20250414201323_AddSoftDeleteFlagLeague.Designer.cs b/EntityFrameworkCore.Data/Migrations/20250414201323_AddSoftDeleteFlagLeague.Designer.cs new file mode 100644 index 0000000..fe232e6 --- /dev/null +++ b/EntityFrameworkCore.Data/Migrations/20250414201323_AddSoftDeleteFlagLeague.Designer.cs @@ -0,0 +1,575 @@ +// +using System; +using EntityFrameworkCore.Data; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace EntityFrameworkCore.Data.Migrations +{ + [DbContext(typeof(DeadBallZoneLeagueDbContext))] + [Migration("20250414201323_AddSoftDeleteFlagLeague")] + partial class AddSoftDeleteFlagLeague + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "9.0.3"); + + modelBuilder.Entity("EntityFrameworkCore.Domain.Coach", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("CreatedBy") + .HasMaxLength(100) + .HasColumnType("TEXT"); + + b.Property("CreatedDate") + .HasColumnType("TEXT"); + + b.Property("ModifiedBy") + .HasMaxLength(100) + .HasColumnType("TEXT"); + + b.Property("ModifiedDate") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("TEXT"); + + b.Property("Version") + .IsConcurrencyToken() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.ToTable("Coaches"); + + b.HasData( + new + { + Id = 1, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Christian Southgate", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 2, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Rob Mann", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 3, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Jon Curtis", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 4, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Andy Taylor", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 5, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Steve Johnson", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 6, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Dan Cook", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 7, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Ken Jarvis", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 8, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Kenny Suzuki", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 9, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Gordon Hall", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 10, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "John O Dowd", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 11, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Julian Widdows", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 12, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Andy Williams", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 13, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Trevor Williams", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 14, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Blake Deathray", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 15, + CreatedDate = new DateTime(2025, 4, 7, 17, 7, 27, 33, DateTimeKind.Unspecified), + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Rock Housebrick", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }); + }); + + modelBuilder.Entity("EntityFrameworkCore.Domain.League", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("CreatedBy") + .HasMaxLength(100) + .HasColumnType("TEXT"); + + b.Property("CreatedDate") + .HasColumnType("TEXT"); + + b.Property("IsDeleted") + .HasColumnType("INTEGER"); + + b.Property("ModifiedBy") + .HasMaxLength(100) + .HasColumnType("TEXT"); + + b.Property("ModifiedDate") + .HasColumnType("TEXT"); + + b.Property("Name") + .HasMaxLength(100) + .HasColumnType("TEXT"); + + b.Property("Version") + .IsConcurrencyToken() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.ToTable("Leagues"); + + b.HasData( + new + { + Id = 1, + CreatedDate = new DateTime(2025, 4, 6, 17, 7, 27, 33, DateTimeKind.Unspecified), + IsDeleted = false, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Local League", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 2, + CreatedDate = new DateTime(2025, 4, 6, 17, 7, 27, 33, DateTimeKind.Unspecified), + IsDeleted = false, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "National League", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 3, + CreatedDate = new DateTime(2025, 4, 6, 17, 7, 27, 33, DateTimeKind.Unspecified), + IsDeleted = false, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Geosphere", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 4, + CreatedDate = new DateTime(2025, 4, 6, 17, 7, 27, 33, DateTimeKind.Unspecified), + IsDeleted = false, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Cyber war", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }); + }); + + modelBuilder.Entity("EntityFrameworkCore.Domain.Match", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("AwayTeamId") + .HasColumnType("INTEGER"); + + b.Property("AwayTeamScore") + .HasColumnType("INTEGER"); + + b.Property("CreatedBy") + .HasMaxLength(100) + .HasColumnType("TEXT"); + + b.Property("CreatedDate") + .HasColumnType("TEXT"); + + b.Property("Date") + .HasColumnType("TEXT"); + + b.Property("HomeTeamId") + .HasColumnType("INTEGER"); + + b.Property("HomeTeamScore") + .HasColumnType("INTEGER"); + + b.Property("ModifiedBy") + .HasMaxLength(100) + .HasColumnType("TEXT"); + + b.Property("ModifiedDate") + .HasColumnType("TEXT"); + + b.Property("TicketPrice") + .HasPrecision(16, 2) + .HasColumnType("TEXT"); + + b.Property("Version") + .IsConcurrencyToken() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("AwayTeamId"); + + b.HasIndex("HomeTeamId"); + + b.ToTable("Matches"); + }); + + modelBuilder.Entity("EntityFrameworkCore.Domain.Team", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("CoachId") + .HasColumnType("INTEGER"); + + b.Property("CreatedBy") + .HasMaxLength(100) + .HasColumnType("TEXT"); + + b.Property("CreatedDate") + .HasColumnType("TEXT"); + + b.Property("LeagueId") + .HasColumnType("INTEGER"); + + b.Property("ModifiedBy") + .HasMaxLength(100) + .HasColumnType("TEXT"); + + b.Property("ModifiedDate") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("TEXT"); + + b.Property("Version") + .IsConcurrencyToken() + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.HasIndex("CoachId") + .IsUnique(); + + b.HasIndex("LeagueId"); + + b.HasIndex("Name") + .IsUnique(); + + b.ToTable("Teams"); + + b.HasData( + new + { + Id = 1, + CoachId = 1, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 2, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Neo Delhi", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 2, + CoachId = 2, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 1, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Voodoo", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 3, + CoachId = 3, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 1, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Penal X", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 4, + CoachId = 4, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 3, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Neo Tokyo", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 5, + CoachId = 5, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 2, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Neo Barcelona", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 6, + CoachId = 6, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 2, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Neo Manchester", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 7, + CoachId = 7, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 3, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Neo Bangkok", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 8, + CoachId = 8, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 3, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Neo Amsterdam", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 9, + CoachId = 9, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 1, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Killaklowns", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 10, + CoachId = 10, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 1, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Sol", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 11, + CoachId = 11, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 4, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "DEC", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 12, + CoachId = 12, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 1, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Leopards", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 13, + CoachId = 13, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 1, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Harlequins", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 14, + CoachId = 14, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 4, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Gladiators", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }, + new + { + Id = 15, + CoachId = 15, + CreatedDate = new DateTime(2025, 4, 4, 17, 7, 27, 33, DateTimeKind.Unspecified), + LeagueId = 1, + ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "Fiz-O", + Version = new Guid("00000000-0000-0000-0000-000000000000") + }); + }); + + modelBuilder.Entity("EntityFrameworkCore.Domain.TeamsAndLeaguesView", b => + { + b.Property("LeagueName") + .HasMaxLength(100) + .HasColumnType("TEXT"); + + b.Property("Name") + .HasMaxLength(100) + .HasColumnType("TEXT"); + + b.ToTable((string)null); + + b.ToView("vw_TeamsAndLeagues", (string)null); + }); + + modelBuilder.Entity("EntityFrameworkCore.Domain.Match", b => + { + b.HasOne("EntityFrameworkCore.Domain.Team", "AwayTeam") + .WithMany("AwayMatches") + .HasForeignKey("AwayTeamId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired(); + + b.HasOne("EntityFrameworkCore.Domain.Team", "HomeTeam") + .WithMany("HomeMatches") + .HasForeignKey("HomeTeamId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired(); + + b.Navigation("AwayTeam"); + + b.Navigation("HomeTeam"); + }); + + modelBuilder.Entity("EntityFrameworkCore.Domain.Team", b => + { + b.HasOne("EntityFrameworkCore.Domain.Coach", "Coach") + .WithOne("Team") + .HasForeignKey("EntityFrameworkCore.Domain.Team", "CoachId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("EntityFrameworkCore.Domain.League", "League") + .WithMany("Teams") + .HasForeignKey("LeagueId"); + + b.Navigation("Coach"); + + b.Navigation("League"); + }); + + modelBuilder.Entity("EntityFrameworkCore.Domain.Coach", b => + { + b.Navigation("Team"); + }); + + modelBuilder.Entity("EntityFrameworkCore.Domain.League", b => + { + b.Navigation("Teams"); + }); + + modelBuilder.Entity("EntityFrameworkCore.Domain.Team", b => + { + b.Navigation("AwayMatches"); + + b.Navigation("HomeMatches"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/EntityFrameworkCore.Data/Migrations/20250414201323_AddSoftDeleteFlagLeague.cs b/EntityFrameworkCore.Data/Migrations/20250414201323_AddSoftDeleteFlagLeague.cs new file mode 100644 index 0000000..4e01e80 --- /dev/null +++ b/EntityFrameworkCore.Data/Migrations/20250414201323_AddSoftDeleteFlagLeague.cs @@ -0,0 +1,57 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace EntityFrameworkCore.Data.Migrations +{ + /// + public partial class AddSoftDeleteFlagLeague : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "IsDeleted", + table: "Leagues", + type: "INTEGER", + nullable: false, + defaultValue: false); + + migrationBuilder.UpdateData( + table: "Leagues", + keyColumn: "Id", + keyValue: 1, + column: "IsDeleted", + value: false); + + migrationBuilder.UpdateData( + table: "Leagues", + keyColumn: "Id", + keyValue: 2, + column: "IsDeleted", + value: false); + + migrationBuilder.UpdateData( + table: "Leagues", + keyColumn: "Id", + keyValue: 3, + column: "IsDeleted", + value: false); + + migrationBuilder.UpdateData( + table: "Leagues", + keyColumn: "Id", + keyValue: 4, + column: "IsDeleted", + value: false); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "IsDeleted", + table: "Leagues"); + } + } +} diff --git a/EntityFrameworkCore.Data/Migrations/DeadBallZoneLeagueDbContextModelSnapshot.cs b/EntityFrameworkCore.Data/Migrations/DeadBallZoneLeagueDbContextModelSnapshot.cs index f6c4aeb..61d5521 100644 --- a/EntityFrameworkCore.Data/Migrations/DeadBallZoneLeagueDbContextModelSnapshot.cs +++ b/EntityFrameworkCore.Data/Migrations/DeadBallZoneLeagueDbContextModelSnapshot.cs @@ -186,6 +186,9 @@ namespace EntityFrameworkCore.Data.Migrations b.Property("CreatedDate") .HasColumnType("TEXT"); + b.Property("IsDeleted") + .HasColumnType("INTEGER"); + b.Property("ModifiedBy") .HasMaxLength(100) .HasColumnType("TEXT"); @@ -210,6 +213,7 @@ namespace EntityFrameworkCore.Data.Migrations { Id = 1, CreatedDate = new DateTime(2025, 4, 6, 17, 7, 27, 33, DateTimeKind.Unspecified), + IsDeleted = false, ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), Name = "Local League", Version = new Guid("00000000-0000-0000-0000-000000000000") @@ -218,6 +222,7 @@ namespace EntityFrameworkCore.Data.Migrations { Id = 2, CreatedDate = new DateTime(2025, 4, 6, 17, 7, 27, 33, DateTimeKind.Unspecified), + IsDeleted = false, ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), Name = "National League", Version = new Guid("00000000-0000-0000-0000-000000000000") @@ -226,6 +231,7 @@ namespace EntityFrameworkCore.Data.Migrations { Id = 3, CreatedDate = new DateTime(2025, 4, 6, 17, 7, 27, 33, DateTimeKind.Unspecified), + IsDeleted = false, ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), Name = "Geosphere", Version = new Guid("00000000-0000-0000-0000-000000000000") @@ -234,6 +240,7 @@ namespace EntityFrameworkCore.Data.Migrations { Id = 4, CreatedDate = new DateTime(2025, 4, 6, 17, 7, 27, 33, DateTimeKind.Unspecified), + IsDeleted = false, ModifiedDate = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), Name = "Cyber war", Version = new Guid("00000000-0000-0000-0000-000000000000")