using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; namespace ReallifeGamemode.Database.Migrations { public partial class JobFix : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_ServerVehicles_Jobs_JobId", table: "ServerVehicles"); migrationBuilder.DropForeignKey( name: "FK_Users_Jobs_JobId", table: "Users"); migrationBuilder.DropTable( name: "Jobs"); migrationBuilder.DropIndex( name: "IX_Users_JobId", table: "Users"); migrationBuilder.DropIndex( name: "IX_ServerVehicles_JobId", table: "ServerVehicles"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Jobs", columns: table => new { Id = table.Column(nullable: false) .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), Name = table.Column(nullable: true) }, constraints: table => { table.PrimaryKey("PK_Jobs", x => x.Id); }); migrationBuilder.CreateIndex( name: "IX_Users_JobId", table: "Users", column: "JobId"); migrationBuilder.CreateIndex( name: "IX_ServerVehicles_JobId", table: "ServerVehicles", column: "JobId"); migrationBuilder.AddForeignKey( name: "FK_ServerVehicles_Jobs_JobId", table: "ServerVehicles", column: "JobId", principalTable: "Jobs", principalColumn: "Id", onDelete: ReferentialAction.Restrict); migrationBuilder.AddForeignKey( name: "FK_Users_Jobs_JobId", table: "Users", column: "JobId", principalTable: "Jobs", principalColumn: "Id", onDelete: ReferentialAction.Restrict); } } }