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