Y2S1-Web_Apps_and_Services/ThAmCo.Events/Data/Migrations/20181205125146_AddSoftDeleteCustomer.cs

26 lines
733 B
C#
Raw Permalink Normal View History

2020-06-07 21:36:12 +00:00
using Microsoft.EntityFrameworkCore.Migrations;
namespace ThAmCo.Events.Data.Migrations
{
public partial class AddSoftDeleteCustomer : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "IsDeleted",
schema: "thamco.events",
table: "Customers",
nullable: false,
defaultValue: false);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsDeleted",
schema: "thamco.events",
table: "Customers");
}
}
}