Table 8910 Email Related Attachment, source in 28

Source242526272829metadata in 28

src/System Application/App/Email/src/Message/EmailRelatedAttachment.Table.al50 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;

/// <summary>
/// Temporary table that holds information about attachments related to an email.
/// </summary>
table 8910 "Email Related Attachment"
{
    Access = Public;
    TableType = Temporary;

    fields
    {
        field(1; Id; BigInteger)
        {
            DataClassification = SystemMetadata;
            AutoIncrement = true;
        }
        field(2; "Attachment Name"; Text[1024])
        {
            DataClassification = CustomerContent;
        }
        field(3; "Attachment System ID"; Guid)
        {
            DataClassification = SystemMetadata;
        }
        field(4; "Attachment Table ID"; Integer)
        {
            DataClassification = SystemMetadata;
        }
        field(5; "Attachment Source"; Text[250])
        {
            Access = Internal;
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(PK; Id, "Attachment Name", "Attachment System ID")
        {
            Clustered = true;
        }
    }

}