Table 4151 Persistent Blob in 27
- App
- System Application
- Namespace
- System.Utilities
Versions171819202122232425262728latest
Source in 27
src/System Application/App/BLOB Storage/src/PersistentBlob.Table.al37 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.Utilities;
table 4151 "Persistent Blob"
{
Access = Internal;
InherentEntitlements = X;
InherentPermissions = X;
fields
{
field(1; "Primary Key"; BigInteger)
{
AutoIncrement = true;
DataClassification = SystemMetadata;
}
field(2; Blob; Blob)
{
DataClassification = CustomerContent;
}
}
keys
{
key(Key1; "Primary Key")
{
Clustered = true;
}
}
}
Fields, 2
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Primary Key | BigInteger | - |
| 2 | Blob | Blob | - |
Keys, 1
| Name | Fields | Obsolete |
|---|---|---|
| Key1, clustered | Primary Key | - |