ListFormSeeder düzenlemesi

This commit is contained in:
Sedat Öztürk 2025-11-07 23:03:13 +03:00
parent ef44b7136c
commit a2632705c7
3 changed files with 4 additions and 4 deletions

View file

@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore;
namespace Kurs.Platform.Migrations namespace Kurs.Platform.Migrations
{ {
[DbContext(typeof(PlatformDbContext))] [DbContext(typeof(PlatformDbContext))]
[Migration("20251106192916_Initial")] [Migration("20251107194939_Initial")]
partial class Initial partial class Initial
{ {
/// <inheritdoc /> /// <inheritdoc />
@ -5138,7 +5138,7 @@ namespace Kurs.Platform.Migrations
b.Property<int>("PageSize") b.Property<int>("PageSize")
.ValueGeneratedOnAdd() .ValueGeneratedOnAdd()
.HasColumnType("int") .HasColumnType("int")
.HasDefaultValue(20); .HasDefaultValue(50);
b.Property<string>("PagerOptionJson") b.Property<string>("PagerOptionJson")
.HasColumnType("text"); .HasColumnType("text");

View file

@ -1879,7 +1879,7 @@ namespace Kurs.Platform.Migrations
Description = table.Column<string>(type: "nvarchar(512)", maxLength: 512, nullable: true), Description = table.Column<string>(type: "nvarchar(512)", maxLength: 512, nullable: true),
Title = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true), Title = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true),
SortMode = table.Column<string>(type: "nvarchar(20)", maxLength: 20, nullable: true), SortMode = table.Column<string>(type: "nvarchar(20)", maxLength: 20, nullable: true),
PageSize = table.Column<int>(type: "int", nullable: false, defaultValue: 20), PageSize = table.Column<int>(type: "int", nullable: false, defaultValue: 50),
Width = table.Column<int>(type: "int", nullable: true), Width = table.Column<int>(type: "int", nullable: true),
Height = table.Column<int>(type: "int", nullable: true), Height = table.Column<int>(type: "int", nullable: true),
DefaultFilter = table.Column<string>(type: "text", nullable: true), DefaultFilter = table.Column<string>(type: "text", nullable: true),

View file

@ -5135,7 +5135,7 @@ namespace Kurs.Platform.Migrations
b.Property<int>("PageSize") b.Property<int>("PageSize")
.ValueGeneratedOnAdd() .ValueGeneratedOnAdd()
.HasColumnType("int") .HasColumnType("int")
.HasDefaultValue(20); .HasDefaultValue(50);
b.Property<string>("PagerOptionJson") b.Property<string>("PagerOptionJson")
.HasColumnType("text"); .HasColumnType("text");