Table 9996 Upgrade Tag Backup in 27

App
System Application
Namespace
System.Upgrade

Fields, 2Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Upgrade Tags/src/UpgradeTagBackup.Table.al42 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.Upgrade;

table 9996 "Upgrade Tag Backup"
{
    Access = Internal;
    InherentEntitlements = rimdX;
    InherentPermissions = rimdX;
    Caption = 'Upgrade Tag Backup';
    DataClassification = SystemMetadata;
    DataPerCompany = false;
    Extensible = false;
    ReplicateData = false;

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

        field(2; Content; Blob)
        {
            Caption = 'Content';
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(Id; Id)
        {
            Clustered = true;
        }
    }
}

Fields, 2

IdNameTypeObsolete
1IdInteger-
2ContentBlob-

Keys, 1

NameFieldsObsolete
Id, clusteredId-