|
|
|
@ -59,6 +59,21 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
table.PrimaryKey("PK_AbpClaimTypes", x => x.Id); |
|
|
|
}); |
|
|
|
|
|
|
|
migrationBuilder.CreateTable( |
|
|
|
name: "AbpFeatureValues", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(nullable: false), |
|
|
|
Name = table.Column<string>(maxLength: 128, nullable: false), |
|
|
|
Value = table.Column<string>(maxLength: 128, nullable: false), |
|
|
|
ProviderName = table.Column<string>(maxLength: 64, nullable: true), |
|
|
|
ProviderKey = table.Column<string>(maxLength: 64, nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
table.PrimaryKey("PK_AbpFeatureValues", x => x.Id); |
|
|
|
}); |
|
|
|
|
|
|
|
migrationBuilder.CreateTable( |
|
|
|
name: "AbpOrganizationUnits", |
|
|
|
columns: table => new |
|
|
|
@ -928,6 +943,11 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
table: "AbpEntityPropertyChanges", |
|
|
|
column: "EntityChangeId"); |
|
|
|
|
|
|
|
migrationBuilder.CreateIndex( |
|
|
|
name: "IX_AbpFeatureValues_Name_ProviderName_ProviderKey", |
|
|
|
table: "AbpFeatureValues", |
|
|
|
columns: new[] { "Name", "ProviderName", "ProviderKey" }); |
|
|
|
|
|
|
|
migrationBuilder.CreateIndex( |
|
|
|
name: "IX_AbpOrganizationUnitRoles_RoleId_OrganizationUnitId", |
|
|
|
table: "AbpOrganizationUnitRoles", |
|
|
|
@ -1072,6 +1092,9 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
migrationBuilder.DropTable( |
|
|
|
name: "AbpEntityPropertyChanges"); |
|
|
|
|
|
|
|
migrationBuilder.DropTable( |
|
|
|
name: "AbpFeatureValues"); |
|
|
|
|
|
|
|
migrationBuilder.DropTable( |
|
|
|
name: "AbpOrganizationUnitRoles"); |
|
|
|
|