| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- // <auto-generated />
- using System;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore.Infrastructure;
- using Microsoft.EntityFrameworkCore.Metadata;
- using Microsoft.EntityFrameworkCore.Migrations;
- using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
- #nullable disable
- namespace bitforum.Migrations.DefaultDb
- {
- [DbContext(typeof(DefaultDbContext))]
- [Migration("20250115122254_initial")]
- partial class initial
- {
- /// <inheritdoc />
- protected override void BuildTargetModel(ModelBuilder modelBuilder)
- {
- #pragma warning disable 612, 618
- modelBuilder
- .HasAnnotation("ProductVersion", "8.0.0")
- .HasAnnotation("Relational:MaxIdentifierLength", 128);
- SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
- modelBuilder.Entity("bitforum.Models.Config", b =>
- {
- b.Property<int>("ID")
- .ValueGeneratedOnAdd()
- .HasColumnType("int");
- SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("ID"));
- b.Property<DateTime>("CreatedAt")
- .HasColumnType("datetime2");
- b.Property<string>("Description")
- .HasColumnType("nvarchar(max)");
- b.Property<string>("Key")
- .IsRequired()
- .HasColumnType("nvarchar(450)");
- b.Property<string>("Value")
- .HasColumnType("nvarchar(max)");
- b.HasKey("ID");
- b.HasIndex("Key")
- .IsUnique();
- b.ToTable("Config");
- });
- #pragma warning restore 612, 618
- }
- }
- }
|