using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace YarpGateway.Migrations { /// public partial class AddIsGlobalToTenantRoute : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_TenantRoutes_Tenants_TenantCode", table: "TenantRoutes"); migrationBuilder.DropUniqueConstraint( name: "AK_Tenants_TenantCode", table: "Tenants"); migrationBuilder.DropIndex( name: "IX_TenantRoutes_TenantCode_ServiceName", table: "TenantRoutes"); migrationBuilder.AddColumn( name: "IsGlobal", table: "TenantRoutes", type: "boolean", nullable: false, defaultValue: false); migrationBuilder.CreateIndex( name: "IX_TenantRoutes_ServiceName", table: "TenantRoutes", column: "ServiceName"); migrationBuilder.CreateIndex( name: "IX_TenantRoutes_ServiceName_IsGlobal_Status", table: "TenantRoutes", columns: new[] { "ServiceName", "IsGlobal", "Status" }); migrationBuilder.CreateIndex( name: "IX_TenantRoutes_TenantCode", table: "TenantRoutes", column: "TenantCode"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropIndex( name: "IX_TenantRoutes_ServiceName", table: "TenantRoutes"); migrationBuilder.DropIndex( name: "IX_TenantRoutes_ServiceName_IsGlobal_Status", table: "TenantRoutes"); migrationBuilder.DropIndex( name: "IX_TenantRoutes_TenantCode", table: "TenantRoutes"); migrationBuilder.DropColumn( name: "IsGlobal", table: "TenantRoutes"); migrationBuilder.AddUniqueConstraint( name: "AK_Tenants_TenantCode", table: "Tenants", column: "TenantCode"); migrationBuilder.CreateIndex( name: "IX_TenantRoutes_TenantCode_ServiceName", table: "TenantRoutes", columns: new[] { "TenantCode", "ServiceName" }, unique: true); migrationBuilder.AddForeignKey( name: "FK_TenantRoutes_Tenants_TenantCode", table: "TenantRoutes", column: "TenantCode", principalTable: "Tenants", principalColumn: "TenantCode", onDelete: ReferentialAction.Restrict); } } }