using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace line_gestao_api.Migrations { /// public partial class RemoveDetailedImportLogs : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.Sql( """ DELETE FROM "AuditLogs" WHERE "RequestPath" ILIKE '%import-excel%' AND COALESCE("Page", '') <> 'Importação de Planilha'; """); } /// protected override void Down(MigrationBuilder migrationBuilder) { // Nao ha restauracao segura para os logs removidos. } } }