mirror of https://github.com/abpframework/abp.git
26 changed files with 47 additions and 1767 deletions
@ -0,0 +1,10 @@ |
|||
# ABP v1.0 Has Been Finally Released! |
|||
|
|||
Today is the big day! After ~3 years of continuous development, first stable ABP release, v1.0, has been released. Thanks to everyone contributed to the project or tried it so far. |
|||
|
|||
 |
|||
|
|||
## Road Map |
|||
|
|||
... |
|||
|
|||
|
After Width: | Height: | Size: 66 KiB |
File diff suppressed because it is too large
@ -1,32 +0,0 @@ |
|||
using Microsoft.EntityFrameworkCore.Migrations; |
|||
|
|||
namespace MyCompanyName.MyProjectName.Migrations |
|||
{ |
|||
public partial class Remove_UniqueIndex_From_TenantName : Migration |
|||
{ |
|||
protected override void Up(MigrationBuilder migrationBuilder) |
|||
{ |
|||
migrationBuilder.DropIndex( |
|||
name: "IX_AbpTenants_Name", |
|||
table: "AbpTenants"); |
|||
|
|||
migrationBuilder.CreateIndex( |
|||
name: "IX_AbpTenants_Name", |
|||
table: "AbpTenants", |
|||
column: "Name"); |
|||
} |
|||
|
|||
protected override void Down(MigrationBuilder migrationBuilder) |
|||
{ |
|||
migrationBuilder.DropIndex( |
|||
name: "IX_AbpTenants_Name", |
|||
table: "AbpTenants"); |
|||
|
|||
migrationBuilder.CreateIndex( |
|||
name: "IX_AbpTenants_Name", |
|||
table: "AbpTenants", |
|||
column: "Name", |
|||
unique: true); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue