// <auto-generated /> using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; #nullable disable namespace song_of_the_day.DataMigrations { [DbContext(typeof(DataContext))] [Migration("20250413192634_AdditionalFields")] partial class AdditionalFields { /// <inheritdoc /> protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "9.0.3") .HasAnnotation("Relational:MaxIdentifierLength", 63); NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); modelBuilder.Entity("Song", b => { b.Property<int>("SongId") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("SongId")); b.Property<string>("Artist") .IsRequired() .HasColumnType("text"); b.Property<string>("Name") .IsRequired() .HasColumnType("text"); b.Property<string>("Url") .IsRequired() .HasColumnType("text"); b.HasKey("SongId"); b.ToTable("Songs"); }); modelBuilder.Entity("SongSuggestion", b => { b.Property<int>("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id")); b.Property<DateTime>("Date") .HasColumnType("timestamp with time zone"); b.Property<int>("SongId") .HasColumnType("integer"); b.Property<int>("UserId") .HasColumnType("integer"); b.HasKey("Id"); b.HasIndex("SongId"); b.HasIndex("UserId"); b.ToTable("SongSuggestions"); }); modelBuilder.Entity("User", b => { b.Property<int>("UserId") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("UserId")); b.Property<bool>("IsIntroduced") .HasColumnType("boolean"); b.Property<string>("Name") .IsRequired() .HasColumnType("text"); b.Property<string>("SignalId") .IsRequired() .HasColumnType("text"); b.Property<string>("UserName") .IsRequired() .HasColumnType("text"); b.HasKey("UserId"); b.ToTable("Users"); }); modelBuilder.Entity("SongSuggestion", b => { b.HasOne("Song", "Song") .WithMany() .HasForeignKey("SongId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("User", "User") .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Song"); b.Navigation("User"); }); #pragma warning restore 612, 618 } } }