Table 1750 Fields Sync Status, source in 24

Source242526272829metadata in 24

src/System Application/App/Data Classification/src/FieldsSyncStatus.Table.al36 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.Privacy;

table 1750 "Fields Sync Status"
{
    Access = Internal;
    InherentEntitlements = X;
    InherentPermissions = X;

    fields
    {
        field(1; ID; Code[2])
        {
            DataClassification = SystemMetadata;
        }
        field(2; "Last Sync Date Time"; DateTime)
        {
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(Key1; ID)
        {
            Clustered = true;
        }
    }

}