You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
682 B

using Microsoft.EntityFrameworkCore.Migrations;
namespace FileStorage.Migrations
{
public partial class data20210305 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsDeleted",
table: "base_user_branches");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "IsDeleted",
table: "base_user_branches",
type: "bit",
nullable: false,
defaultValue: false);
}
}
}