Table 9996 Upgrade Tag Backup, source in 26
Source242526272829metadata in 26
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;
}
}
}