73 lines
2.2 KiB
C#
73 lines
2.2 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace RazorPagesMovie.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class New_DataAnnotations : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "Title",
|
|
table: "Movie",
|
|
type: "nvarchar(60)",
|
|
maxLength: 60,
|
|
nullable: false,
|
|
oldClrType: typeof(string),
|
|
oldType: "nvarchar(max)");
|
|
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "Rating",
|
|
table: "Movie",
|
|
type: "nvarchar(5)",
|
|
maxLength: 5,
|
|
nullable: false,
|
|
oldClrType: typeof(string),
|
|
oldType: "nvarchar(max)");
|
|
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "Genre",
|
|
table: "Movie",
|
|
type: "nvarchar(30)",
|
|
maxLength: 30,
|
|
nullable: false,
|
|
oldClrType: typeof(string),
|
|
oldType: "nvarchar(max)");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "Title",
|
|
table: "Movie",
|
|
type: "nvarchar(max)",
|
|
nullable: false,
|
|
oldClrType: typeof(string),
|
|
oldType: "nvarchar(60)",
|
|
oldMaxLength: 60);
|
|
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "Rating",
|
|
table: "Movie",
|
|
type: "nvarchar(max)",
|
|
nullable: false,
|
|
oldClrType: typeof(string),
|
|
oldType: "nvarchar(5)",
|
|
oldMaxLength: 5);
|
|
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "Genre",
|
|
table: "Movie",
|
|
type: "nvarchar(max)",
|
|
nullable: false,
|
|
oldClrType: typeof(string),
|
|
oldType: "nvarchar(30)",
|
|
oldMaxLength: 30);
|
|
}
|
|
}
|
|
}
|