blob: ef3f3a7b76b7e025ed76a98f13a577afa943c552 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace LibraryAPI.Migrations
{
public partial class AddBookTitle : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "Title",
table: "Books",
type: "text",
nullable: false,
defaultValue: "");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Title",
table: "Books");
}
}
}
|