ListFormSeeder düzenlemesi
This commit is contained in:
parent
ef44b7136c
commit
a2632705c7
3 changed files with 4 additions and 4 deletions
|
|
@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore;
|
|||
namespace Kurs.Platform.Migrations
|
||||
{
|
||||
[DbContext(typeof(PlatformDbContext))]
|
||||
[Migration("20251106192916_Initial")]
|
||||
[Migration("20251107194939_Initial")]
|
||||
partial class Initial
|
||||
{
|
||||
/// <inheritdoc />
|
||||
|
|
@ -5138,7 +5138,7 @@ namespace Kurs.Platform.Migrations
|
|||
b.Property<int>("PageSize")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int")
|
||||
.HasDefaultValue(20);
|
||||
.HasDefaultValue(50);
|
||||
|
||||
b.Property<string>("PagerOptionJson")
|
||||
.HasColumnType("text");
|
||||
|
|
@ -1879,7 +1879,7 @@ namespace Kurs.Platform.Migrations
|
|||
Description = table.Column<string>(type: "nvarchar(512)", maxLength: 512, nullable: true),
|
||||
Title = table.Column<string>(type: "nvarchar(256)", maxLength: 256, 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),
|
||||
Height = table.Column<int>(type: "int", nullable: true),
|
||||
DefaultFilter = table.Column<string>(type: "text", nullable: true),
|
||||
|
|
@ -5135,7 +5135,7 @@ namespace Kurs.Platform.Migrations
|
|||
b.Property<int>("PageSize")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int")
|
||||
.HasDefaultValue(20);
|
||||
.HasDefaultValue(50);
|
||||
|
||||
b.Property<string>("PagerOptionJson")
|
||||
.HasColumnType("text");
|
||||
|
|
|
|||
Loading…
Reference in a new issue