Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

20211123150542_ChangedIdFromGuidToInt.Designer.cs 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // <auto-generated />
  2. using BlackRock.Reporting.API.Persistence;
  3. using Microsoft.EntityFrameworkCore;
  4. using Microsoft.EntityFrameworkCore.Infrastructure;
  5. using Microsoft.EntityFrameworkCore.Migrations;
  6. using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
  7. #nullable disable
  8. namespace BlackRock.Reporting.API.Migrations
  9. {
  10. [DbContext(typeof(BRDbContext))]
  11. [Migration("20211123150542_ChangedIdFromGuidToInt")]
  12. partial class ChangedIdFromGuidToInt
  13. {
  14. protected override void BuildTargetModel(ModelBuilder modelBuilder)
  15. {
  16. #pragma warning disable 612, 618
  17. modelBuilder.HasAnnotation("ProductVersion", "6.0.0");
  18. modelBuilder.Entity("BlackRock.Reporting.API.Models.User", b =>
  19. {
  20. b.Property<int>("Id")
  21. .ValueGeneratedOnAdd()
  22. .HasColumnType("INTEGER");
  23. b.Property<string>("Email")
  24. .HasColumnType("TEXT");
  25. b.Property<string>("Name")
  26. .HasColumnType("TEXT");
  27. b.HasKey("Id");
  28. b.ToTable("Users");
  29. });
  30. #pragma warning restore 612, 618
  31. }
  32. }
  33. }