Table 8901 Email Error, source in 24

Source242526272829metadata in 24

src/System Application/App/Email/src/Email/Outbox/EmailError.Table.al51 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Email;

table 8901 "Email Error"
{
    Extensible = false;
    Access = Internal;
    InherentPermissions = X;
    InherentEntitlements = X;

    fields
    {
        field(1; Id; Integer)
        {
            DataClassification = SystemMetadata;
            AutoIncrement = true;
        }

        field(2; "Outbox Id"; BigInteger)
        {
            DataClassification = SystemMetadata;
            TableRelation = "Email Outbox".Id;
        }

        field(3; "Error Message"; Blob)
        {
            DataClassification = CustomerContent;
        }

        field(4; "Error Callstack"; Blob)
        {
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(PK; Id)
        {
            Clustered = true;
        }
        key(OutboxId; "Outbox Id")
        {
        }
    }

}