mirror of https://github.com/EasyAbp/EShop.git
3 changed files with 4265 additions and 0 deletions
File diff suppressed because it is too large
@ -0,0 +1,22 @@ |
|||
using Microsoft.EntityFrameworkCore.Migrations; |
|||
|
|||
namespace EShopSample.Migrations |
|||
{ |
|||
public partial class AddedExtraPropertiesToProductSku : Migration |
|||
{ |
|||
protected override void Up(MigrationBuilder migrationBuilder) |
|||
{ |
|||
migrationBuilder.AddColumn<string>( |
|||
name: "ExtraProperties", |
|||
table: "EasyAbpEShopProductsProductSkus", |
|||
nullable: true); |
|||
} |
|||
|
|||
protected override void Down(MigrationBuilder migrationBuilder) |
|||
{ |
|||
migrationBuilder.DropColumn( |
|||
name: "ExtraProperties", |
|||
table: "EasyAbpEShopProductsProductSkus"); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue