Rename `AbpSettingDefinitionRecords` table.

pull/17107/head
maliming 2 years ago
parent 4f4a0b5234
commit a889c56896
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4

@ -13,7 +13,7 @@ using Volo.Abp.SettingManagement.DemoApp;
namespace Volo.Abp.SettingManagement.DemoApp.Migrations
{
[DbContext(typeof(DemoAppDbContext))]
[Migration("20230626120017_Initial")]
[Migration("20230713030300_Initial")]
partial class Initial
{
/// <inheritdoc />
@ -835,10 +835,12 @@ namespace Volo.Abp.SettingManagement.DemoApp.Migrations
.HasColumnType("uniqueidentifier");
b.Property<string>("DefaultValue")
.HasColumnType("nvarchar(max)");
.HasMaxLength(256)
.HasColumnType("nvarchar(256)");
b.Property<string>("Description")
.HasColumnType("nvarchar(max)");
.HasMaxLength(512)
.HasColumnType("nvarchar(512)");
b.Property<string>("DisplayName")
.IsRequired()
@ -872,7 +874,7 @@ namespace Volo.Abp.SettingManagement.DemoApp.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b =>

@ -171,14 +171,14 @@ namespace Volo.Abp.SettingManagement.DemoApp.Migrations
});
migrationBuilder.CreateTable(
name: "AbpSettingDefinitionRecords",
name: "AbpSettingDefinitions",
columns: table => new
{
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
Name = table.Column<string>(type: "nvarchar(128)", maxLength: 128, nullable: false),
DisplayName = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: false),
Description = table.Column<string>(type: "nvarchar(max)", nullable: true),
DefaultValue = table.Column<string>(type: "nvarchar(max)", nullable: true),
Description = table.Column<string>(type: "nvarchar(512)", maxLength: 512, nullable: true),
DefaultValue = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true),
IsVisibleToClients = table.Column<bool>(type: "bit", nullable: false),
Providers = table.Column<string>(type: "nvarchar(128)", maxLength: 128, nullable: true),
IsInherited = table.Column<bool>(type: "bit", nullable: false),
@ -187,7 +187,7 @@ namespace Volo.Abp.SettingManagement.DemoApp.Migrations
},
constraints: table =>
{
table.PrimaryKey("PK_AbpSettingDefinitionRecords", x => x.Id);
table.PrimaryKey("PK_AbpSettingDefinitions", x => x.Id);
});
migrationBuilder.CreateTable(
@ -502,8 +502,8 @@ namespace Volo.Abp.SettingManagement.DemoApp.Migrations
columns: new[] { "TenantId", "UserId" });
migrationBuilder.CreateIndex(
name: "IX_AbpSettingDefinitionRecords_Name",
table: "AbpSettingDefinitionRecords",
name: "IX_AbpSettingDefinitions_Name",
table: "AbpSettingDefinitions",
column: "Name",
unique: true);
@ -583,7 +583,7 @@ namespace Volo.Abp.SettingManagement.DemoApp.Migrations
name: "AbpSecurityLogs");
migrationBuilder.DropTable(
name: "AbpSettingDefinitionRecords");
name: "AbpSettingDefinitions");
migrationBuilder.DropTable(
name: "AbpSettings");

@ -832,10 +832,12 @@ namespace Volo.Abp.SettingManagement.DemoApp.Migrations
.HasColumnType("uniqueidentifier");
b.Property<string>("DefaultValue")
.HasColumnType("nvarchar(max)");
.HasMaxLength(256)
.HasColumnType("nvarchar(256)");
b.Property<string>("Description")
.HasColumnType("nvarchar(max)");
.HasMaxLength(512)
.HasColumnType("nvarchar(512)");
b.Property<string>("DisplayName")
.IsRequired()
@ -869,7 +871,7 @@ namespace Volo.Abp.SettingManagement.DemoApp.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b =>

@ -38,7 +38,7 @@ public static class SettingManagementDbContextModelBuilderExtensions
builder.Entity<SettingDefinitionRecord>(b =>
{
b.ToTable(AbpSettingManagementDbProperties.DbTablePrefix + "SettingDefinitionRecords", AbpSettingManagementDbProperties.DbSchema);
b.ToTable(AbpSettingManagementDbProperties.DbTablePrefix + "SettingDefinitions", AbpSettingManagementDbProperties.DbSchema);
b.ConfigureByConvention();

@ -16,7 +16,7 @@ public static class SettingManagementMongoDbContextExtensions
builder.Entity<SettingDefinitionRecord>(b =>
{
b.CollectionName = AbpSettingManagementDbProperties.DbTablePrefix + "SettingDefinitionRecords";
b.CollectionName = AbpSettingManagementDbProperties.DbTablePrefix + "SettingDefinitions";
});
}
}

@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore;
namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations
{
[DbContext(typeof(MyProjectNameDbContext))]
[Migration("20230627075208_Initial")]
[Migration("20230713030359_Initial")]
partial class Initial
{
/// <inheritdoc />
@ -1599,7 +1599,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -256,7 +256,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations
});
migrationBuilder.CreateTable(
name: "AbpSettingDefinitionRecords",
name: "AbpSettingDefinitions",
columns: table => new
{
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
@ -272,7 +272,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations
},
constraints: table =>
{
table.PrimaryKey("PK_AbpSettingDefinitionRecords", x => x.Id);
table.PrimaryKey("PK_AbpSettingDefinitions", x => x.Id);
});
migrationBuilder.CreateTable(
@ -893,8 +893,8 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations
columns: new[] { "TenantId", "UserId" });
migrationBuilder.CreateIndex(
name: "IX_AbpSettingDefinitionRecords_Name",
table: "AbpSettingDefinitionRecords",
name: "IX_AbpSettingDefinitions_Name",
table: "AbpSettingDefinitions",
column: "Name",
unique: true);
@ -1024,7 +1024,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations
name: "AbpSecurityLogs");
migrationBuilder.DropTable(
name: "AbpSettingDefinitionRecords");
name: "AbpSettingDefinitions");
migrationBuilder.DropTable(
name: "AbpSettings");

@ -1596,7 +1596,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore;
namespace MyCompanyName.MyProjectName.Migrations
{
[DbContext(typeof(MyProjectNameDbContext))]
[Migration("20230627075212_Initial")]
[Migration("20230713030712_Initial")]
partial class Initial
{
/// <inheritdoc />
@ -1599,7 +1599,7 @@ namespace MyCompanyName.MyProjectName.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -256,7 +256,7 @@ namespace MyCompanyName.MyProjectName.Migrations
});
migrationBuilder.CreateTable(
name: "AbpSettingDefinitionRecords",
name: "AbpSettingDefinitions",
columns: table => new
{
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
@ -272,7 +272,7 @@ namespace MyCompanyName.MyProjectName.Migrations
},
constraints: table =>
{
table.PrimaryKey("PK_AbpSettingDefinitionRecords", x => x.Id);
table.PrimaryKey("PK_AbpSettingDefinitions", x => x.Id);
});
migrationBuilder.CreateTable(
@ -893,8 +893,8 @@ namespace MyCompanyName.MyProjectName.Migrations
columns: new[] { "TenantId", "UserId" });
migrationBuilder.CreateIndex(
name: "IX_AbpSettingDefinitionRecords_Name",
table: "AbpSettingDefinitionRecords",
name: "IX_AbpSettingDefinitions_Name",
table: "AbpSettingDefinitions",
column: "Name",
unique: true);
@ -1024,7 +1024,7 @@ namespace MyCompanyName.MyProjectName.Migrations
name: "AbpSecurityLogs");
migrationBuilder.DropTable(
name: "AbpSettingDefinitionRecords");
name: "AbpSettingDefinitions");
migrationBuilder.DropTable(
name: "AbpSettings");

@ -1596,7 +1596,7 @@ namespace MyCompanyName.MyProjectName.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore;
namespace MyCompanyName.MyProjectName.Host.Migrations
{
[DbContext(typeof(MyProjectNameDbContext))]
[Migration("20230627075201_Initial")]
[Migration("20230713030357_Initial")]
partial class Initial
{
/// <inheritdoc />
@ -1599,7 +1599,7 @@ namespace MyCompanyName.MyProjectName.Host.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -256,7 +256,7 @@ namespace MyCompanyName.MyProjectName.Host.Migrations
});
migrationBuilder.CreateTable(
name: "AbpSettingDefinitionRecords",
name: "AbpSettingDefinitions",
columns: table => new
{
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
@ -272,7 +272,7 @@ namespace MyCompanyName.MyProjectName.Host.Migrations
},
constraints: table =>
{
table.PrimaryKey("PK_AbpSettingDefinitionRecords", x => x.Id);
table.PrimaryKey("PK_AbpSettingDefinitions", x => x.Id);
});
migrationBuilder.CreateTable(
@ -893,8 +893,8 @@ namespace MyCompanyName.MyProjectName.Host.Migrations
columns: new[] { "TenantId", "UserId" });
migrationBuilder.CreateIndex(
name: "IX_AbpSettingDefinitionRecords_Name",
table: "AbpSettingDefinitionRecords",
name: "IX_AbpSettingDefinitions_Name",
table: "AbpSettingDefinitions",
column: "Name",
unique: true);
@ -1024,7 +1024,7 @@ namespace MyCompanyName.MyProjectName.Host.Migrations
name: "AbpSecurityLogs");
migrationBuilder.DropTable(
name: "AbpSettingDefinitionRecords");
name: "AbpSettingDefinitions");
migrationBuilder.DropTable(
name: "AbpSettings");

@ -1596,7 +1596,7 @@ namespace MyCompanyName.MyProjectName.Host.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore;
namespace MyCompanyName.MyProjectName.Mvc.Migrations
{
[DbContext(typeof(MyProjectNameDbContext))]
[Migration("20230627075212_Initial")]
[Migration("20230713030711_Initial")]
partial class Initial
{
/// <inheritdoc />
@ -1599,7 +1599,7 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -256,7 +256,7 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations
});
migrationBuilder.CreateTable(
name: "AbpSettingDefinitionRecords",
name: "AbpSettingDefinitions",
columns: table => new
{
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
@ -272,7 +272,7 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations
},
constraints: table =>
{
table.PrimaryKey("PK_AbpSettingDefinitionRecords", x => x.Id);
table.PrimaryKey("PK_AbpSettingDefinitions", x => x.Id);
});
migrationBuilder.CreateTable(
@ -893,8 +893,8 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations
columns: new[] { "TenantId", "UserId" });
migrationBuilder.CreateIndex(
name: "IX_AbpSettingDefinitionRecords_Name",
table: "AbpSettingDefinitionRecords",
name: "IX_AbpSettingDefinitions_Name",
table: "AbpSettingDefinitions",
column: "Name",
unique: true);
@ -1024,7 +1024,7 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations
name: "AbpSecurityLogs");
migrationBuilder.DropTable(
name: "AbpSettingDefinitionRecords");
name: "AbpSettingDefinitions");
migrationBuilder.DropTable(
name: "AbpSettings");

@ -1596,7 +1596,7 @@ namespace MyCompanyName.MyProjectName.Mvc.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore;
namespace MyCompanyName.MyProjectName.Migrations
{
[DbContext(typeof(MyProjectNameDbContext))]
[Migration("20230627074919_Initial")]
[Migration("20230713030629_Initial")]
partial class Initial
{
/// <inheritdoc />
@ -1650,7 +1650,7 @@ namespace MyCompanyName.MyProjectName.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -277,7 +277,7 @@ namespace MyCompanyName.MyProjectName.Migrations
});
migrationBuilder.CreateTable(
name: "AbpSettingDefinitionRecords",
name: "AbpSettingDefinitions",
columns: table => new
{
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
@ -293,7 +293,7 @@ namespace MyCompanyName.MyProjectName.Migrations
},
constraints: table =>
{
table.PrimaryKey("PK_AbpSettingDefinitionRecords", x => x.Id);
table.PrimaryKey("PK_AbpSettingDefinitions", x => x.Id);
});
migrationBuilder.CreateTable(
@ -919,8 +919,8 @@ namespace MyCompanyName.MyProjectName.Migrations
columns: new[] { "TenantId", "UserId" });
migrationBuilder.CreateIndex(
name: "IX_AbpSettingDefinitionRecords_Name",
table: "AbpSettingDefinitionRecords",
name: "IX_AbpSettingDefinitions_Name",
table: "AbpSettingDefinitions",
column: "Name",
unique: true);
@ -1053,7 +1053,7 @@ namespace MyCompanyName.MyProjectName.Migrations
name: "AbpSecurityLogs");
migrationBuilder.DropTable(
name: "AbpSettingDefinitionRecords");
name: "AbpSettingDefinitions");
migrationBuilder.DropTable(
name: "AbpSettings");

@ -1647,7 +1647,7 @@ namespace MyCompanyName.MyProjectName.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore;
namespace MyCompanyName.MyProjectName.Migrations
{
[DbContext(typeof(AuthServerDbContext))]
[Migration("20230627075218_Initial")]
[Migration("20230713030452_Initial")]
partial class Initial
{
/// <inheritdoc />
@ -1599,7 +1599,7 @@ namespace MyCompanyName.MyProjectName.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -256,7 +256,7 @@ namespace MyCompanyName.MyProjectName.Migrations
});
migrationBuilder.CreateTable(
name: "AbpSettingDefinitionRecords",
name: "AbpSettingDefinitions",
columns: table => new
{
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
@ -272,7 +272,7 @@ namespace MyCompanyName.MyProjectName.Migrations
},
constraints: table =>
{
table.PrimaryKey("PK_AbpSettingDefinitionRecords", x => x.Id);
table.PrimaryKey("PK_AbpSettingDefinitions", x => x.Id);
});
migrationBuilder.CreateTable(
@ -893,8 +893,8 @@ namespace MyCompanyName.MyProjectName.Migrations
columns: new[] { "TenantId", "UserId" });
migrationBuilder.CreateIndex(
name: "IX_AbpSettingDefinitionRecords_Name",
table: "AbpSettingDefinitionRecords",
name: "IX_AbpSettingDefinitions_Name",
table: "AbpSettingDefinitions",
column: "Name",
unique: true);
@ -1024,7 +1024,7 @@ namespace MyCompanyName.MyProjectName.Migrations
name: "AbpSecurityLogs");
migrationBuilder.DropTable(
name: "AbpSettingDefinitionRecords");
name: "AbpSettingDefinitions");
migrationBuilder.DropTable(
name: "AbpSettings");

@ -1596,7 +1596,7 @@ namespace MyCompanyName.MyProjectName.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore;
namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations
{
[DbContext(typeof(UnifiedDbContext))]
[Migration("20230627075222_Initial")]
[Migration("20230713030436_Initial")]
partial class Initial
{
/// <inheritdoc />
@ -1258,7 +1258,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -256,7 +256,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations
});
migrationBuilder.CreateTable(
name: "AbpSettingDefinitionRecords",
name: "AbpSettingDefinitions",
columns: table => new
{
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
@ -272,7 +272,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations
},
constraints: table =>
{
table.PrimaryKey("PK_AbpSettingDefinitionRecords", x => x.Id);
table.PrimaryKey("PK_AbpSettingDefinitions", x => x.Id);
});
migrationBuilder.CreateTable(
@ -760,8 +760,8 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations
columns: new[] { "TenantId", "UserId" });
migrationBuilder.CreateIndex(
name: "IX_AbpSettingDefinitionRecords_Name",
table: "AbpSettingDefinitionRecords",
name: "IX_AbpSettingDefinitions_Name",
table: "AbpSettingDefinitions",
column: "Name",
unique: true);
@ -861,7 +861,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations
name: "AbpSecurityLogs");
migrationBuilder.DropTable(
name: "AbpSettingDefinitionRecords");
name: "AbpSettingDefinitions");
migrationBuilder.DropTable(
name: "AbpSettings");

@ -1255,7 +1255,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore;
namespace MyCompanyName.MyProjectName.Migrations
{
[DbContext(typeof(UnifiedDbContext))]
[Migration("20230627075318_Initial")]
[Migration("20230713030513_Initial")]
partial class Initial
{
/// <inheritdoc />
@ -1258,7 +1258,7 @@ namespace MyCompanyName.MyProjectName.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

@ -256,7 +256,7 @@ namespace MyCompanyName.MyProjectName.Migrations
});
migrationBuilder.CreateTable(
name: "AbpSettingDefinitionRecords",
name: "AbpSettingDefinitions",
columns: table => new
{
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
@ -272,7 +272,7 @@ namespace MyCompanyName.MyProjectName.Migrations
},
constraints: table =>
{
table.PrimaryKey("PK_AbpSettingDefinitionRecords", x => x.Id);
table.PrimaryKey("PK_AbpSettingDefinitions", x => x.Id);
});
migrationBuilder.CreateTable(
@ -760,8 +760,8 @@ namespace MyCompanyName.MyProjectName.Migrations
columns: new[] { "TenantId", "UserId" });
migrationBuilder.CreateIndex(
name: "IX_AbpSettingDefinitionRecords_Name",
table: "AbpSettingDefinitionRecords",
name: "IX_AbpSettingDefinitions_Name",
table: "AbpSettingDefinitions",
column: "Name",
unique: true);
@ -861,7 +861,7 @@ namespace MyCompanyName.MyProjectName.Migrations
name: "AbpSecurityLogs");
migrationBuilder.DropTable(
name: "AbpSettingDefinitionRecords");
name: "AbpSettingDefinitions");
migrationBuilder.DropTable(
name: "AbpSettings");

@ -1255,7 +1255,7 @@ namespace MyCompanyName.MyProjectName.Migrations
b.HasIndex("Name")
.IsUnique();
b.ToTable("AbpSettingDefinitionRecords", (string)null);
b.ToTable("AbpSettingDefinitions", (string)null);
});
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>

Loading…
Cancel
Save