Add EF-Migration for changing id on models from int to Guid

This commit is contained in:
Francesco Lorenzo D'Amico
2026-08-19 14:23:15 +02:00
parent 1e5f2adcc7
commit 3392eb8823
3 changed files with 227 additions and 8 deletions
@@ -24,11 +24,9 @@ namespace RazorPagesMovie.Migrations
modelBuilder.Entity("RazorPagesMovie.Models.AdminUser", b =>
{
b.Property<int>("Id")
b.Property<Guid>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("int");
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
.HasColumnType("uniqueidentifier");
b.Property<string>("PasswordHash")
.IsRequired()
@@ -46,11 +44,9 @@ namespace RazorPagesMovie.Migrations
modelBuilder.Entity("RazorPagesMovie.Models.ContactMessage", b =>
{
b.Property<int>("Id")
b.Property<Guid>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("int");
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
.HasColumnType("uniqueidentifier");
b.Property<string>("Email")
.IsRequired()