// using System; using Hutopy.Web.Features.Messages.Data; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; #nullable disable namespace Hutopy.Web.Features.Messages.Migrations { [DbContext(typeof(MessagingDbContext))] [Migration("20241217225954_ChangeStripeId")] partial class ChangeStripeId { /// protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasDefaultSchema("Messaging") .HasAnnotation("ProductVersion", "8.0.10") .HasAnnotation("Relational:MaxIdentifierLength", 63); NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); modelBuilder.Entity("Hutopy.Web.Features.Messages.Data.Message", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("uuid"); b.Property("CreatedAt") .ValueGeneratedOnAdd() .HasColumnType("timestamp with time zone") .HasDefaultValueSql("CURRENT_TIMESTAMP"); b.Property("CreatedBy") .HasColumnType("uuid"); b.Property("CreatedByName") .IsRequired() .HasMaxLength(255) .HasColumnType("character varying(255)"); b.Property("CreatedByPortraitUrl") .HasMaxLength(255) .HasColumnType("character varying(255)"); b.Property("ParentId") .HasColumnType("uuid"); b.Property("SubjectId") .HasColumnType("uuid"); b.Property("Value") .IsRequired() .HasMaxLength(2048) .HasColumnType("character varying(2048)"); b.HasKey("Id"); b.ToTable("Messages", "Messaging"); }); #pragma warning restore 612, 618 } } }