using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace backend.Migrations { /// public partial class V1__init : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Movies", columns: table => new { imdbID = table.Column(type: "text", nullable: false), Title = table.Column(type: "text", nullable: true), Year = table.Column(type: "text", nullable: true), Type = table.Column(type: "text", nullable: true), Poster = table.Column(type: "text", nullable: true) }, constraints: table => { table.PrimaryKey("PK_Movies", x => x.imdbID); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "Movies"); } } }