28 changed files with 21324 additions and 49 deletions
File diff suppressed because it is too large
@ -0,0 +1,95 @@ |
|||||
|
using Microsoft.EntityFrameworkCore.Migrations; |
||||
|
|
||||
|
#nullable disable |
||||
|
|
||||
|
namespace Win_in.Sfs.Wms.Store.Migrations |
||||
|
{ |
||||
|
public partial class Added_Store_Add_SupplierAdress_SupplierName : Migration |
||||
|
{ |
||||
|
protected override void Up(MigrationBuilder migrationBuilder) |
||||
|
{ |
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "SupplierAdress", |
||||
|
table: "Store_SupplierAsn", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
|
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "SupplierName", |
||||
|
table: "Store_SupplierAsn", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
|
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "SupplierAdress", |
||||
|
table: "Store_PurchaseReceiptRequest", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
|
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "SupplierAdress", |
||||
|
table: "Store_PurchaseReceiptNote", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
|
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "SupplierName", |
||||
|
table: "Store_PurchaseReceiptNote", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
|
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "SupplierAdress", |
||||
|
table: "Store_PurchaseOrder", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
|
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "SupplierName", |
||||
|
table: "Store_PurchaseOrder", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
|
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "SupplierAdress", |
||||
|
table: "Job_PurchaseReceiptJob", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
} |
||||
|
|
||||
|
protected override void Down(MigrationBuilder migrationBuilder) |
||||
|
{ |
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "SupplierAdress", |
||||
|
table: "Store_SupplierAsn"); |
||||
|
|
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "SupplierName", |
||||
|
table: "Store_SupplierAsn"); |
||||
|
|
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "SupplierAdress", |
||||
|
table: "Store_PurchaseReceiptRequest"); |
||||
|
|
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "SupplierAdress", |
||||
|
table: "Store_PurchaseReceiptNote"); |
||||
|
|
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "SupplierName", |
||||
|
table: "Store_PurchaseReceiptNote"); |
||||
|
|
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "SupplierAdress", |
||||
|
table: "Store_PurchaseOrder"); |
||||
|
|
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "SupplierName", |
||||
|
table: "Store_PurchaseOrder"); |
||||
|
|
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "SupplierAdress", |
||||
|
table: "Job_PurchaseReceiptJob"); |
||||
|
} |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue