KOP_Library_v5/DatabaseImplement/Migrations/20231130223553_FirstUpdate.cs

30 lines
760 B
C#
Raw Normal View History

2023-12-12 16:23:04 +04:00
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace DatabaseImplement.Migrations
{
/// <inheritdoc />
public partial class FirstUpdate : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Author",
table: "Books");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "Author",
table: "Books",
type: "nvarchar(max)",
nullable: false,
defaultValue: "");
}
}
}