using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace asg_form.Migrations { /// public partial class formupdata : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Common_Roles", table: "F_role", type: "nvarchar(max)", nullable: true); migrationBuilder.AddColumn( name: "Game_Name", table: "F_role", type: "nvarchar(max)", nullable: true); migrationBuilder.AddColumn( name: "Historical_Ranks", table: "F_role", type: "int", nullable: true); migrationBuilder.AddColumn( name: "Id_Card", table: "F_role", type: "nvarchar(max)", nullable: true); migrationBuilder.AddColumn( name: "Phone_Number", table: "F_role", type: "nvarchar(max)", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Common_Roles", table: "F_role"); migrationBuilder.DropColumn( name: "Game_Name", table: "F_role"); migrationBuilder.DropColumn( name: "Historical_Ranks", table: "F_role"); migrationBuilder.DropColumn( name: "Id_Card", table: "F_role"); migrationBuilder.DropColumn( name: "Phone_Number", table: "F_role"); } } }