93 lines
2.7 KiB
C#
93 lines
2.7 KiB
C#
![]() |
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace Back.Migrations
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
public partial class tbswarehouse : Migration
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.AlterColumn<decimal>(
|
|||
|
name: "Count",
|
|||
|
table: "Remittances",
|
|||
|
type: "decimal(18,2)",
|
|||
|
nullable: false,
|
|||
|
oldClrType: typeof(int),
|
|||
|
oldType: "int");
|
|||
|
|
|||
|
migrationBuilder.AddColumn<bool>(
|
|||
|
name: "Deleted",
|
|||
|
table: "Remittances",
|
|||
|
type: "bit",
|
|||
|
nullable: false,
|
|||
|
defaultValue: false);
|
|||
|
|
|||
|
migrationBuilder.AddColumn<int>(
|
|||
|
name: "InvoiceID",
|
|||
|
table: "Remittances",
|
|||
|
type: "int",
|
|||
|
nullable: true);
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<decimal>(
|
|||
|
name: "Count",
|
|||
|
table: "Receipts",
|
|||
|
type: "decimal(18,2)",
|
|||
|
nullable: false,
|
|||
|
oldClrType: typeof(int),
|
|||
|
oldType: "int");
|
|||
|
|
|||
|
migrationBuilder.AddColumn<bool>(
|
|||
|
name: "Deleted",
|
|||
|
table: "Receipts",
|
|||
|
type: "bit",
|
|||
|
nullable: false,
|
|||
|
defaultValue: false);
|
|||
|
|
|||
|
migrationBuilder.AddColumn<int>(
|
|||
|
name: "InvoiceID",
|
|||
|
table: "Receipts",
|
|||
|
type: "int",
|
|||
|
nullable: true);
|
|||
|
}
|
|||
|
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "Deleted",
|
|||
|
table: "Remittances");
|
|||
|
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "InvoiceID",
|
|||
|
table: "Remittances");
|
|||
|
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "Deleted",
|
|||
|
table: "Receipts");
|
|||
|
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "InvoiceID",
|
|||
|
table: "Receipts");
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<int>(
|
|||
|
name: "Count",
|
|||
|
table: "Remittances",
|
|||
|
type: "int",
|
|||
|
nullable: false,
|
|||
|
oldClrType: typeof(decimal),
|
|||
|
oldType: "decimal(18,2)");
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<int>(
|
|||
|
name: "Count",
|
|||
|
table: "Receipts",
|
|||
|
type: "int",
|
|||
|
nullable: false,
|
|||
|
oldClrType: typeof(decimal),
|
|||
|
oldType: "decimal(18,2)");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|