diff --git a/docs/en/Modules/Database-Tables.md b/docs/en/Modules/Database-Tables.md index 810136731f..a8dcec90b9 100644 --- a/docs/en/Modules/Database-Tables.md +++ b/docs/en/Modules/Database-Tables.md @@ -6,1150 +6,570 @@ This documentation describes all database tables and their purposes. You can rea ### AbpAuditLogs -AbpAuditLogs is used to store audit logs. - -#### Description - -This table stores information about the audit logs in the application. Each record in the table represents a audit log and allows to track the actions performed in the application effectively. For example, you can use the ApplicationName, UserId, ExecutionTime columns to filter the audit logs by `ApplicationName`, `UserId`, `ExecutionTime` columns to filter the audit logs by application name, user id, and execution time respectively, so that you can easily track the actions performed in the application. - -#### Used By - -| Table | Column | Description | -| --- | --- | --- | -| [AbpAuditLogActions](#abpauditlogactions) | AuditLogId | To match the audit log actions. | -| [AbpEntityChanges](#abpentitychanges) | AuditLogId | To match the entity changes. | - ---- +This table stores information about the audit logs in the application. Each record represents an audit log and tracks the actions performed in the application. ### AbpAuditLogActions -AbpAuditLogActions is used to store audit log actions. - -#### Description +This table stores information about the actions performed in the application, which are logged for auditing purposes. -This table stores information about the actions performed in the application, which are logged for auditing purposes. Each record in the table represents a single action that has been performed and includes details such as the unique identifier of the audit log, the service and method name, any parameters passed to the method, the execution time and duration, and any additional properties. The Id column is used as the primary key for the table and the AuditLogId column is used to link the action to a specific audit log. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [AbpAuditLogs](#abpauditlogs) | Id | To match the audit log. | - ---- +| [AbpAuditLogs](#abpauditlogs) | Id | Links each action to a specific audit log. | ### AbpEntityChanges -AbpEntityChanges is used to store entity changes. +This table stores information about entity changes in the application, which are logged for auditing purposes. -#### Description - -This table stores information about the entity changes in the application. Each record in the table represents a entity change and allows to track the actions performed in the application effectively. For example, you can use the `EntityId`, `EntityTenantId`, `EntityTypeFullName` columns to filter the entity changes by `EntityId`, `EntityTenantId`, `EntityTypeFullName` columns to filter the entity changes by entity id, entity tenant id, and entity type full name respectively, so that you can easily track the actions performed in the application. - -#### Uses - -| Table | Column | Description | -| --- | --- | --- | -| [AbpAuditLogs](#abpauditlogs) | Id | To match the audit log. | - -#### Used By +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [AbpEntityPropertyChanges](#abpentitypropertychanges) | EntityChangeId | To match the entity property changes. | - ---- +| [AbpAuditLogs](#abpauditlogs) | Id | Links each entity change to a specific audit log. | ### AbpEntityPropertyChanges -AbpEntityPropertyChanges is used to store entity property changes. - -#### Description - -This table stores information about the property changes made to entities in the application. Each record in the table represents a change made to a property of an entity and allows to track the changes effectively. For example, you can use the `EntityChangeId`, `NewValue`, `OriginalValue`, `PropertyName` columns to filter the property changes by entity change id, new value, original value, and property name respectively, so that you can easily track the changes made to the properties of entities in the application. +This table stores information about property changes to entities in the application, which are logged for auditing purposes. ## Uses | Table | Column | Description | | --- | --- | --- | -| [AbpEntityChanges](#abpentitychanges) | Id | To match the entity change. | - ---- +| [AbpEntityChanges](#abpentitychanges) | Id | Links each property change to a specific entity change. | ## [Background Jobs Module](Background-Jobs.md) ### AbpBackgroundJobs -AbpBackgroundJobs is used to store background jobs. - -#### Description - -This table stores information about the background jobs in the application. Each record in the table represents a background job and allows to manage and track the background jobs effectively. For example, you can use the `JobName`, `JobArgs`, `TryCount`, `NextTryTime`, `LastTryTime`, `IsAbandoned`, `Priority` columns to filter the background jobs by job name, job arguments, try count, next try time, last try time, abandoned status, and priority respectively, so that you can easily manage and track the background jobs in the application. - ---- +This table stores information about the background jobs in the application and facilitates their efficient management and tracking. Each entry in the table contains details of a background job, including job name, arguments, try count, next try time, last try time, abandoned status, and priority. ## [Tenant Management Module](Tenant-Management.md) ### AbpTenants -AbpTenants Table is used to store tenants. - -#### Description - -This table stores information about the tenants. Each record in the table represents a tenant and allows to manage and track the tenants effectively. This table is important for managing and tracking the tenants of the application. - -#### Used By - -| Table | Column | Description | -| --- | --- | --- | -| [AbpTenantConnectionStrings](#AbpTenantconnectionstrings) | TenantId | To match the tenant connection string with the tenant. | - ---- +This table stores information about the tenants. Each record represents a tenant and contains information about the tenant, such as name and other details. ### AbpTenantConnectionStrings -AbpTenantConnectionStrings Table is used to store tenant connection strings. - -#### Description - -This table stores information about the tenant connection strings. Each record in the table represents a tenant connection string and allows to manage and track the tenant connection strings effectively. This table is important for managing and tracking the tenant connection strings of the application. +This table stores information about the tenant database connection strings. When you define a connection string for a tenant, a new record will be added to this table. You can query this database to get connection strings by tenants. ## Uses | Table | Column | Description | | --- | --- | --- | -| [AbpTenants](#AbpTenants) | Id | To match the tenant connection string with the tenant. | - ---- +| [AbpTenants](#abptenants) | Id | The `Id` column in the `AbpTenants` table is used to associate the tenant connection string with the corresponding tenant. | ## Blogging Module -### BlgBlogs - -BlgBlogs Table is used to store blogs. - -#### Description - -This table stores information about the blogs. Each record in the table represents a blog and allows to manage and track the blogs effectively. This table is important for managing and tracking the blogs of the application. +### BlgUsers -#### Used By +This table stores information about the blog users. When a new identity user is created, a new record will be added to this table. -| Table | Column | Description | -| --- | --- | --- | -| [BlgPosts](#blgposts) | BlogId | To match the post with the blog. | +### BlgBlogs ---- +This table serves to store blog information and semantically separates the posts of each blog. ### BlgPosts -BlgPosts Table is used to store posts. - -#### Description - -This table stores information about the posts. Each record in the table represents a post and allows to manage and track the posts effectively. This table is important for managing and tracking the posts of the application. - -#### Uses +This table stores information about the blog posts. You can query this table to get blog posts by blogs. -| Table | Column | Description | -| --- | --- | --- | -| [BlgBlogs](#blgblogs) | Id | To match the post with the blog. | - -#### Used By +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [BlgComments](#blgcomments) | PostId | To match the comment with the post. | -| [BlgPostTags](#blgposttags) | PostId | To match the post tag with the post. | - ---- - +| [BlgBlogs](#blgblogs) | Id | To associate the blog post with the corresponding blog. | ### BlgComments -BlgComments Table is used to store comments. - -#### Description - -This table stores information about the comments. Each record in the table represents a comment and allows to manage and track the comments effectively. This table is important for managing and tracking the comments of the application. - -#### Uses +This table stores information about comments made on blog posts. You can query this table to get comments by posts. +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [BlgPosts](#blgposts) | Id | To match the comment with the post. | -| [BlgComments](#blgcomments) | Id | To match the comment with the parent comment. | - -#### Used By - -| Table | Column | Description | -| --- | --- | --- | -| [BlgComments](#blgcomments) | RepliedCommentId | To match the comment with the parent comment. | - ---- +| [BlgPosts](#blgposts) | Id | Links the comment to the corresponding blog post. | +| [BlgComments](#blgcomments) | Id | Links the comment to the parent comment. | ### BlgTags -BlgTags Table is used to store tags. - -#### Description - -This table stores information about the tags. Each record in the table represents a tag and allows to manage and track the tags effectively. This table is important for managing and tracking the tags of the application. - -#### Used By - -| Table | Column | Description | -| --- | --- | --- | -| [BlgPostTags](#blgposttags) | TagId | To match the post tag with the tag. | - ---- +This table stores information about the tags. When a new tag is used, a new record will be added to this table. You can query this table to get tags by blogs. ### BlgPostTags -BlgPostTags Table is used to store post tags. - -#### Description - -This table stores information about the post tags. Each record in the table represents a post tag and allows to manage and track the post tags effectively. This table is important for managing and tracking the post tags of the application. +This table is used to associate tags with blog posts in order to categorize and organize the content. You can query this table to get post tags by posts. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [BlgTags](#blgtags) | Id | To match the post tag with the tag. | -| [BlgPosts](#blgposts) | Id | To match the post tag with the post. | - ---- - -### BlgUsers - -BlgUsers Table is used to store users. - -#### Description - -This table stores information about the users. Each record in the table represents a user and allows to manage and track the users effectively. This table is important for managing and tracking the users of the application. - ---- +| [BlgTags](#blgtags) | Id | Links the post tag to the corresponding tag. | +| [BlgPosts](#blgposts) | Id | Links the post tag to the corresponding blog post. | ## [CMS Kit Module](Cms-Kit/Index.md) ### CmsUsers -CmsUsers Table is used to store users. - -#### Description - -This table stores information about the users. Each record in the table represents a user and allows to manage and track the users effectively. This table is important for managing and tracking the users of the application. - -#### Used By - -| Table | Column | Description | -| --- | --- | --- | -| [CmsBlogPosts](#cmsblogposts) | AuthorId | To match the author. | - ---- +This table stores information about the cms kit module users. When a new identity user is created, a new record will be added to this table. ### CmsBlogs -CmsBlogs table is used to store blogs. - -#### Description - -This table stores information about the blogs. Each record in the table represents a blog and allows to manage and track the blogs effectively. This table is important for managing and tracking the blogs of the application. - ---- +This table serves to store blog information and semantically separates the posts of each blog. ### CmsBlogPosts -CmsBlogPosts table is used to store blog posts. - -#### Description - -This table stores information about the blog posts. Each record in the table represents a blog post and allows to manage and track the blog posts effectively. This table is important for managing and tracking the blog posts of the application. +This table stores information about the blog posts. You can query this table to get blog posts by blogs. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [CmsUsers](#cmsusers) | Id | To match the author. | - ---- +| [CmsUsers](#cmsusers) | Id | Links the blog post to the corresponding author. | ### CmsBlogFeatures -The CmsBlogFeatures table is used to store blog features. - -#### Description - -This table stores information about the blog features. Each record in the table represents a blog feature and allows to manage and track the blog features effectively. This table is important for managing and tracking the blog features of the application. - ---- +This table stores information about the blog features. You can query this table to get blog features by blogs. ### CmsComments -The CmsComments table is used to store comments for CMS pages. The table is used by the CmsComments component. - -#### Description - -This table stores information about the comments. Each record in the table represents a comment and allows to manage and track the comments effectively. This table is important for managing and tracking the comments of the application. - ---- +This table is utilized by the CMS Kit Comment system to store comments made on blog posts. You can query this table to get comments by posts. ### CmsTags -CmsTags Table is used to store tags. - -#### Description - -This table stores information about the tags. Each record in the table represents a tag and allows to manage and track the tags effectively. This table is important for managing and tracking the tags of the application. - ---- +This table stores information about the tags. When a new tag is used, a new record will be added to this table. You can query this table to get tags by blogs. ### CmsEntityTags -The CmsEntityTags table is used to store the tags and their relations with entities. The table is used by the CmsTags component. - -#### Description - -This table stores information about the tags associated with a entity. Each record in the table represents a tag associated with a entities and allows to manage and track the tags associated with a entity effectively. This table is important for managing and tracking the tags associated with a entity of the application. - ---- +This table is utilized by the Tag Management to store tags and their relationship with various entities, thus enabling efficient categorization and organization of content. You can query this table to get entity tags by entities. ### CmsGlobalResources -CmsGlobalResources Table is used to store global resources. - -#### Description - -This table stores information about the global resources. Each record in the table represents a global resource and allows to manage and track the global resources effectively. This table is important for managing and tracking the global resources of the application. - ---- +This table is a database table for the CmsGlobalResources system, allowing for dynamic addition of global styles and scripts. ### CmsMediaDescriptors -CmsMediaDescriptors Table is used to store media descriptors. - -#### Description - -This table stores information about the media descriptors. Each record in the table represents a media descriptor and allows to manage and track the media descriptors effectively. This table is important for managing and tracking the media descriptors of the application. - ---- +This table is utilized by the CMS kit module to manage media files by using the [BlobStoring](../Blob-Storing.md) module. ### CmsMenuItems -CmsMenuItems Table is used to store menu items. - -#### Description - -This table stores information about the menu items. Each record in the table represents a menu item and allows to manage and track the menu items effectively. This table is important for managing and tracking the menu items of the application. - ---- +This table is used by the CMS Kit Menu system to manage and store information about dynamic public menus, including details such as menu item display names, url, and hierarchical relationships. ### CmsPages -CmsPages Table is used to store pages. - -#### Description - -This table stores the pages in the application. Each record in the table represents a page and allows to manage and track the pages effectively. This table can be used to store information about pages, including the page title, content, URL, creation date, and other relevant information. - ---- +This table is utilized by the CMS Kit Page system to store dynamic pages within the application, including information such as page URLs, titles, and content. ### CmsRatings -CmsRatings Table is used to store ratings. - -#### Description - -This table stores information about the ratings. Each record in the table represents a rating and allows to manage and track the ratings effectively. This table is important for managing and tracking the ratings of the application. - ---- +This table is utilized by the CMS Kit Rating system to store ratings made on blog posts. You can query this table to get ratings by posts. ### CmsUserReactions -CmsUserReactions Table is used to store user reactions. - -#### Description - -This table stores information about the user reactions. Each record in the table represents a user reaction and allows to manage and track the user reactions effectively. This table is important for managing and tracking the user reactions of the application. - ---- +This table is utilized by the CMS Kit Reaction system to store reactions made on blog posts. You can query this table to get reactions by posts. ## [Docs Module](Docs.md) ### DocsProjects -DocsProjects Table is used to store documentation projects. - -#### Description - -This table stores information about the documentation projects. Each record in the table represents a documentation project and allows to manage and track the documentation projects effectively. This table is important for managing and tracking the documentation projects of the application. - ---- +This table stores project information to categorize documents according to different projects. ### DocsDocuments -DocsDocuments Table is used to store documents. - -#### Description - -This table stores information about the documents. Each record in the table represents a document and allows to manage and track the documents effectively. This table is important for managing and tracking the documents of the application. - -#### Used By - -| Table | Column | Description | -| --- | --- | --- | -| [DocsDocumentContributors](#docsdocumentcontributors) | DocumentId | To match the document. | - ---- +This table is used to retrieve the document if it's not found in the cache. When the documentation content retrieved from the database, it is also being updated. ### DocsDocumentContributors -DocsDocumentContributors Table is used to store document contributors. - -#### Description - -This table stores information about the document contributors. Each record in the table represents a document contributor and allows to manage and track the document contributors effectively. This table is important for managing and tracking the document contributors of the application. +This table stores information about the contributors of the documents. You can query this table to get document contributors by documents. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [DocsDocuments](#docsdocuments) | Id | To match the document. | - ---- +| [DocsDocuments](#docsdocuments) | Id | Links the document contributor to the corresponding document. | ## [Feature Management Module](Feature-Management.md) ### AbpFeatureGroups -AbpFeatureGroups is used to store feature groups. - -#### Description - -This table stores information about the feature groups in the application. Each record in the table represents a feature group and allows to manage and organize the features effectively. For example, you can group all the features in the [`AbpFeatures`](#abpfeatures) table related to the `Identity` module under the `Identity` group. - ---- +This table stores information about the feature groups in the application. For example, you can group all the features in the [`AbpFeatures`](#abpfeatures) table related to the `Identity` module under the `Identity` group. ### AbpFeatures -AbpFeatures is used to store features. - -#### Description - -This table stores information about the features in the application. Each record in the table represents a feature and allows to manage and organize the features effectively. For example, you can use the `Name` column to link each feature with its corresponding feature value in the [`AbpFeatureValues`](#abpfeaturevalues) table, so that you can easily manage and organize the features. - ---- +This table stores information about the features in the application. You can use the `Name` column to link each feature with its corresponding feature value in the [`AbpFeatureValues`](#abpfeaturevalues) table, so that you can easily manage and organize the features. ### AbpFeatureValues -AbpFeatureValues is used to store feature values for providers. - -#### Description - -This table stores the values of the features for different providers. Each record in the table represents a feature value and allows to manage the application features values effectively. For example, you can use the `Name` column to link each feature value with its corresponding feature in the [`AbpFeatures`](#abpfeatures) table, so that you can easily manage and organize the features. - ---- +This table stores the values of the features for different providers. You can use the `Name` column to link each feature value with its corresponding feature in the [`AbpFeatures`](#abpfeatures) table, so that you can easily manage and organize the features. ## [Identity Module](Identity.md) ### AbpUsers -The AbpUsers table is used to store users. - -#### Description - -This table stores information about the users in the application. Each record in the table represents a user and allows to manage and track the users effectively. This table is important for managing and tracking the users of the application, and for controlling access to different parts of the application based on user information. - -#### Used By - -| Table | Column | Description | -| --- | --- | --- | -| [AbpUserClaims](#abpuserclaims) | UserId | To match the user with its claims. | -| [AbpUserLogins](#abpuserlogins) | UserId | To match the user with its logins. | -| [AbpUserRoles](#abpuserroles) | UserId | To match the user with its roles. | -| [AbpUserTokens](#abpusertokens) | UserId | To match the user with its tokens. | -| [AbpUserOrganizationUnits](#abpuserorganizationunits) | UserId | To match the user with its organization units. | - ---- +This table stores information about the identity users in the application. ### AbpRoles -AbpRoles is a table that stores the roles. - -#### Description - -This table stores information about the roles in the application. Each record in the table represents a role and allows to manage and track the roles effectively. Roles are used to manage and control access to different parts of the application by assigning permissions and claims to roles and then assigning those roles to users. This table is important for managing and organizing the roles in the application, and for defining the access rights of the users. - -#### Used By - -| Table | Column | Description | -| --- | --- | --- | -| [AbpRoleClaims](#abproleclaims) | RoleId | To match the role with its claims. | -| [AbpUserRoles](#abpuserroles) | RoleId | To match the role with its users. | -| [AbpOrganizationUnitRoles](#abporganizationunitroles) | RoleId | To match the role with its organization units. | - ---- +This table stores information about the roles in the application. Roles are used to manage and control access to different parts of the application by assigning permissions and claims to roles and then assigning those roles to users. This table is important for managing and organizing the roles in the application, and for defining the access rights of the users. ### AbpClaimTypes -AbpClaimTypes is a table that stores the information of the claim types. - -#### Description - -This table stores information about the claim types used in the application. Each record in the table represents a claim type and allows to manage and track the claim types effectively. For example, you can use the `Name`, `Regex` columns to filter the claim types by name, and regex pattern respectively, so that you can easily manage and track the claim types in the application. This table is important for managing and controlling the user claims, which are used to describe the user's identity and access rights. - ---- +This table stores information about the claim types used in the application. You can use the `Name`, `Regex` columns to filter the claim types by name, and regex pattern respectively, so that you can easily manage and track the claim types in the application. ### AbpLinkUsers -AbpLinkUsers is a table that stores the link users. - -#### Description - -This table stores information about the linked users in the application. Each record in the table represents a linked user and allows to manage and track the linked users effectively. For example, you can use the `SourceUserId`, `SourceTenantId`, `TargetUserId`, `TargetTenantId` columns to filter the linked users by source user id, source tenant id, target user id, and target tenant id respectively, so that you can easily manage and track the linked users in the application. This table is useful for linking multiple user accounts across different tenants or applications to a single user, allowing them to easily switch between their accounts. - ---- +This table is useful for linking multiple user accounts across different tenants or applications to a single user, allowing them to easily switch between their accounts. ### AbpUserClaims -The AbpUserClaims table is used to store user claims. +This table can be used to manage user-based access control by allowing to assign claims to users, which describe the access rights of the individual user. -#### Description - -This table stores information about the claims assigned to users in the application. Each record in the table represents a claim assigned to a user and allows to manage and track the claims effectively. This table can be used to manage user-based access control by allowing to assign claims to users, which describe the access rights of the individual user. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [AbpUsers](#abpusers) | Id | To match the user with its claims. | - ---- +| [AbpUsers](#abpusers) | Id | Links the user claim to the corresponding user. | ### AbpUserLogins -The AbpUserLogins table is used to store user logins. - -#### Description - -This table stores information about the logins of the users in the application. Each record in the table represents a user login and allows to manage and track the user logins effectively. This table can be used to store information about user's external logins such as login with facebook, google, etc and also it can be used to track login history of users. +This table can be used to store information about user's external logins such as login with facebook, google, etc and also it can be used to track login history of users. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [AbpUsers](#abpusers) | Id | To match the user with its logins. | - ---- +| [AbpUsers](#abpusers) | Id | Links the user login to the corresponding user. | ### AbpUserRoles -The AbpUserRoles table is used to store user roles. - -#### Description - -This table stores information about the roles assigned to users in the application. Each record in the table represents a role assigned to a user and allows to manage and track the role assignments effectively. This table can be used to manage user-based access control by allowing to assign roles to users, which describe the access rights of the individual user. +This table can be used to manage user-based access control by allowing to assign roles to users, which describe the access rights of the individual user. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [AbpUsers](#abpusers) | Id | To match the user with its roles. | -| [AbpRoles](#abproles) | Id | To match the role with its users. | - ---- +| [AbpUsers](#abpusers) | Id | Links the user role to the corresponding user. | +| [AbpRoles](#abproles) | Id | Links the user role to the corresponding role. | ### AbpUserTokens -The AbpUserTokens table is used to store user tokens. - -#### Description +This table can be used to store information about user's refresh tokens, access tokens and other tokens used in the application. It can also be used to invalidate or revoke user tokens. -This table stores information about the tokens of the users in the application. Each record in the table represents a token for a user and allows to manage and track the user tokens effectively. This table can be used to store information about user's refresh tokens, access tokens and other tokens used in the application. It can also be used to invalidate or revoke user tokens. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [AbpUsers](#abpusers) | Id | To match the user with its tokens. | - ---- +| [AbpUsers](#abpusers) | Id | Links the user token to the corresponding user. | ### AbpOrganizationUnits -AbpOrganizationUnits is a table that stores the organization units. - -#### Description - -This table stores information about the organization units in the application. Each record in the table represents an organization unit and allows to manage and track the organization units effectively. For example, you can use the `Code`, `ParentId` columns to filter the organization units by code and parent id respectively, so that you can easily manage and track the organization units in the application. This table is useful for creating and managing a hierarchical structure of the organization, allowing to group users and assign roles based on the organization structure. +This table is useful for creating and managing a hierarchical structure of the organization, allowing to group users and assign roles based on the organization structure. You can use the `Code`, `ParentId` columns to filter the organization units by code and parent id respectively, so that you can easily manage and track the organization units in the application. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [AbpOrganizationUnits](#abporganizationunits) | ParentId | The parent organization unit id. | - -#### Used By - -| Table | Column | Description | -| --- | --- | --- | -| [AbpOrganizationUnitRoles](#abporganizationunitroles) | OrganizationUnitId | To match the organization unit with its roles. | -| [AbpUserOrganizationUnits](#abpuserorganizationunits) | OrganizationUnitId | To match the organization unit with its users. | - ---- +| [AbpOrganizationUnits](#abporganizationunits) | ParentId | Links the organization unit to its parent organization unit. | ### AbpOrganizationUnitRoles -AbpOrganizationUnitRoles is a table that stores the organization unit roles. +This table is useful for managing role-based access control at the level of organization units, allowing to assign different roles to different parts of the organization structure. You can use the `OrganizationUnitId`, `RoleId` columns to filter the roles by organization unit id and role id respectively, so that you can easily manage and track the roles assigned to organization units in the application. -#### Description - -This table stores information about the roles assigned to organization units in the application. Each record in the table represents a role assigned to an organization unit and allows to manage and track the roles effectively. For example, you can use the `OrganizationUnitId`, `RoleId` columns to filter the roles by organization unit id and role id respectively, so that you can easily manage and track the roles assigned to organization units in the application. This table is useful for managing role-based access control at the level of organization units, allowing to assign different roles to different parts of the organization structure. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [AbpOrganizationUnits](#abporganizationunits) | Id | To match the organization unit with its roles. | -| [AbpRoles](#abproles) | Id | To match the role with its organization units. | - ---- +| [AbpOrganizationUnits](#abporganizationunits) | Id | Links the organization unit role to the corresponding organization unit. | +| [AbpRoles](#abproles) | Id | Links the organization unit role to the corresponding role. | ### AbpUserOrganizationUnits -The AbpUserOrganizationUnits table is used to store user organization units. - -#### Description - -This table stores information about the organization units assigned to users in the application. Each record in the table represents a user and organization unit assignment and allows to manage and track the user-organization unit assignments effectively. This table can be used to manage user-organization unit relationships, and to group users based on the organization structure. +This table stores information about the organization units assigned to users in the application. This table can be used to manage user-organization unit relationships, and to group users based on the organization structure. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [AbpUsers](#abpusers) | Id | To match the user with its organization units. | -| [AbpOrganizationUnits](#abporganizationunits) | Id | To match the organization unit with its users. | - ---- +| [AbpUsers](#abpusers) | Id | Links the user organization unit to the corresponding user. | +| [AbpOrganizationUnits](#abporganizationunits) | Id | Links the user organization unit to the corresponding organization unit. | ### AbpRoleClaims -AbpRoleClaims is used to store role claims. - -#### Description - -This table stores information about the claims assigned to roles in the application. Each record in the table represents a claim assigned to a role and allows to manage and track the claims effectively. This table is useful for managing role-based access control by allowing to assign claims to roles, which describe the access rights of the users that belong to that role. +This table is useful for managing role-based access control by allowing to assign claims to roles, which describe the access rights of the users that belong to that role. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [AbpRoles](#abproles) | Id | To match the role with its claims. | - ---- +| [AbpRoles](#abproles) | Id | Links the role claim to the corresponding role. | ### AbpSecurityLogs -The AbpSecurityLogs table is used to store security logs. - -#### Description - -This table stores security logs of the application. Each record in the table represents a security event, and the table allows the management and tracking of security events effectively. This table is useful for auditing and troubleshooting the application, by providing a history of who did what and when. - ---- +This table is used to log important operations and changes related to user accounts, allowing users to save the security logs for future reference. ## [Permission Management](Permission-Management.md) ### AbpPermissionGroups -AbpPermissionGroups is used to store permission groups. - -#### Description - -This table stores information about the permission groups in the application. Each record in the table represents a permission group and allows to manage and track the permission groups effectively. This table is important for managing and organizing the permissions in the application, by grouping them into logical categories. - ---- +This table is important for managing and organizing the permissions in the application, by grouping them into logical categories. ### AbpPermissions -The AbpPermissions table is used to store permission definitions. - -#### Description - -This table stores information about the permissions in the application. Each record in the table represents a permission and allows to manage and track the permissions effectively. This table is important for managing and controlling access to different parts of the application and for defining the granular permissions that make up the larger permissions or roles. - ---- +This table is important for managing and controlling access to different parts of the application and for defining the granular permissions that make up the larger permissions or roles. ### AbpPermissionGrants -AbpPermissionGrants is used to store granted permissions for a role or a user. - -#### Description - -This table stores information about the granted permissions in the application. Each record in the table represents a granted permission and allows to manage and track the granted permissions effectively. The table is used to store and manage the permissions in the application and to keep track of permissions that are granted, to whom and when. The columns such as `Name`, `ProviderName`, `ProviderKey`, `TenantId` can be used to filter the granted permissions by name, provider name, provider key, and tenant id respectively, so that you can easily manage and track the granted permissions in the application. This table is important for managing and controlling the access to different parts of the application, and also for auditing purposes. - ---- +The table is used to store and manage the permissions in the application and to keep track of permissions that are granted, to whom and when. The columns such as `Name`, `ProviderName`, `ProviderKey`, `TenantId` can be used to filter the granted permissions by name, provider name, provider key, and tenant id respectively, so that you can easily manage and track the granted permissions in the application. ## [Setting Management](Setting-Management.md) ### AbpSettings -The AbpSettings table is used to store the application settings. - -#### Description - -This table stores the application settings. Each record in the table represents a setting and allows to manage and track the settings effectively. The table is used to store key-value pairs of settings for the application, and it allows for the dynamic configuration of the application without the need for recompilation. - ---- +This table table is used to store key-value pairs of settings for the application, and it allows for the dynamic configuration of the application without the need for recompilation. ## [OpenIddict](OpenIddict.md) ### OpenIddictApplications -OpenIddictApplications Table is used to store OpenIddict applications. - -#### Description - -This table stores the OpenID Connect applications in the application. Each record in the table represents an OpenID Connect application and allows to manage and track the applications effectively. This table can be used to store information about OpenID Connect applications, including the client id, client secret, redirect uri, and other relevant information. It can also be used to authenticate and authorize clients using OpenID Connect protocol. - -#### Used By - -| Table | Column | Description | -| --- | --- | --- | -| [OpenIddictAuthorizations](#openiddictauthorizations) | ApplicationId | To match the authorization with the application. | -| [OpenIddictTokens](#openiddicttokens) | ApplicationId | To match the token with the application. | - ---- +This table can be used to store information about OpenID Connect applications, including the client id, client secret, redirect uri, and other relevant information. It can also be used to authenticate and authorize clients using OpenID Connect protocol. ### OpenIddictAuthorizations -OpenIddictAuthorizations Table is used to store authorizations. - -#### Description - -This table stores the OpenID Connect authorization data in the application. Each record in the table represents an OpenID Connect authorization and allows to manage and track the authorizations effectively. It can also be used to manage and validate the authorization grants issued to clients and users. +This table stores the OpenID Connect authorization data in the application. It can also be used to manage and validate the authorization grants issued to clients and users. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [OpenIddictApplications](#openiddictapplications) | Id | To match the authorization with the application. | - -#### Used By - -| Table | Column | Description | -| --- | --- | --- | -| [OpenIddictTokens](#openiddicttokens) | AuthorizationId | To match the token with the authorization. | - ---- +| [OpenIddictApplications](#openiddictapplications) | Id | Links the authorization to the corresponding application. | ### OpenIddictTokens -OpenIddictTokens Table is used to store tokens. +This table can be used to store information about OpenID Connect tokens, including the token payload, expiration, type, and other relevant information. It can also be used to manage and validate the tokens issued to clients and users, such as access tokens and refresh tokens, and to control access to protected resources. -#### Description - -This table stores the OpenID Connect tokens in the application. Each record in the table represents an OpenID Connect token and allows to manage and track the tokens effectively. This table can be used to store information about OpenID Connect tokens, including the token payload, expiration, type, and other relevant information. It can also be used to manage and validate the tokens issued to clients and users, such as access tokens and refresh tokens, and to control access to protected resources. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [OpenIddictApplications](#openiddictapplications) | Id | To match the token with the application. | -| [OpenIddictAuthorizations](#openiddictauthorizations) | Id | To match the token with the authorization. | - ---- +| [OpenIddictApplications](#openiddictapplications) | Id | Links the token to the corresponding application. | +| [OpenIddictAuthorizations](#openiddictauthorizations) | Id | Links the token to the corresponding authorization. | ### OpenIddictScopes -OpenIddictScopes Table is used to store scopes. - -#### Description - -This table stores the OpenID Connect scopes in the application. Each record in the table represents an OpenID Connect scope and allows to manage and track the scopes effectively. This table can be used to store information about OpenID Connect scopes, including the name and description of the scope. It can also be used to define the permissions or access rights associated with the scopes, which are then used to control access to protected resources. - ---- +This table can be used to store information about OpenID Connect scopes, including the name and description of the scope. It can also be used to define the permissions or access rights associated with the scopes, which are then used to control access to protected resources. ## [IdentityServer](IdentityServer.md) ### IdentityServerApiResources -IdentityServerApiResources Table is used to store API resources. - -#### Description - -This table stores the IdentityServer API resources in the application. Each record in the table represents an API resource and allows to manage and track the resources effectively. This table can be used to store information about API resources, including the resource name, display name, description, and other relevant information. It can also be used to define the scopes, claims, and properties associated with the API resources, which are then used to control access to protected resources. - ---- +This table can be used to store information about API resources, including the resource name, display name, description, and other relevant information. It can also be used to define the scopes, claims, and properties associated with the API resources, which are then used to control access to protected resources. ### IdentityServerIdentityResources -IdentityServerIdentityResources Table is used to store identity resources. - -#### Description - -This table stores the identity resources in the application. Each record in the table represents an identity resource and allows to manage and track the identity resources effectively. This table can be used to store information about identity resources, including the name, display name, description, and enabled status. It can also be used to manage and validate the identity resources. - ---- +This table can be used to store information about identity resources, including the name, display name, description, and enabled status. ### IdentityServerClients -IdentityServerClients Table is used to store clients. - -#### Description - -This table stores the clients registered with IdentityServer in the application. Each record in the table represents a client and allows to manage and track the clients effectively. This table can be used to store information about clients, including the client id, client name, client uri and other relevant information. It can also be used to define the scopes, claims, and properties associated with the clients, which are then used to control access to protected resources. - ---- +This table can be used to store information about clients, including the client id, client name, client uri and other relevant information. It can also be used to define the scopes, claims, and properties associated with the clients, which are then used to control access to protected resources. ### IdentityServerApiScopes -IdentityServerApiScopes Table is used to store scopes of an API resource. - -#### Description - -This table stores the IdentityServer API scopes in the application. Each record in the table represents an API scope and allows to manage and track the scopes effectively. This table can be used to store information about API scopes, including the scope name, display name, description, and other relevant information. It can also be used to define the claims and properties associated with the API scopes, which are then used to control access to protected resources. - ---- +This table can be used to store information about API scopes, including the scope name, display name, description, and other relevant information. It can also be used to define the claims and properties associated with the API scopes, which are then used to control access to protected resources. ### IdentityServerApiResourceClaims -IdentityServerApiResourceClaims Table is used to store claims of an API resource. - -#### Description +This table can be used to store information about claims of an API resource, including the claim type and API resource id. -This table stores the claims of an API resource in the application. Each record in the table represents a claim of an API resource and allows to manage and track the claims effectively. This table can be used to store information about claims of an API resource, including the claim type and API resource id. It can also be used to manage and validate the claims of an API resource. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerApiResources](#identityserverapiresources) | Id | To match the claim with the API resource. | - ---- +| [IdentityServerApiResources](#identityserverapiresources) | Id | Links the claim to the corresponding API resource. | ### IdentityServerIdentityResourceClaims -IdentityServerIdentityResourceClaims Table is used to store claims of an identity resource. - -#### Description +This table can be used to store information about claims of an identity resource, including the claim type and identity resource id. -This table stores the claims of an identity resource in the application. Each record in the table represents a claim of an identity resource and allows to manage and track the claims effectively. This table can be used to store information about claims of an identity resource, including the claim type and identity resource id. It can also be used to manage and validate the claims of an identity resource. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerIdentityResources](#identityserveridentityresources) | Id | To match the claim with the identity resource. | - ---- +| [IdentityServerIdentityResources](#identityserveridentityresources) | Id | Links the claim to the corresponding identity resource. | ### IdentityServerClientClaims -IdentityServerClientClaims Table is used to store claims of a client. +This table can be used to store information about claims of a client, including the claim type, claim value and client id. -#### Description - -This table stores the claims of a client in the application. Each record in the table represents a claim of a client and allows to manage and track the claims effectively. This table can be used to store information about claims of a client, including the claim type, claim value and client id. It can also be used to manage and validate the claims of a client. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerClients](#identityserverclients) | Id | To match the claim with the client. | - ---- +| [IdentityServerClients](#identityserverclients) | Id | Links the claim to the corresponding client. | ### IdentityServerApiScopeClaims -IdentityServerApiScopeClaims Table is used to store claims of an API scope. - -#### Description - -This table stores the claims of an API scope in the application. Each record in the table represents a claim of an API scope and allows to manage and track the claims effectively. This table can be used to store information about claims of an API scope, including the claim type and API scope id. It can also be used to manage and validate the claims of an API scope. +This table can be used to store information about claims of an API scope, including the claim type and API scope id. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerApiScopes](#identityserverapiscopes) | Id | To match the claim with the API scope. | - ---- +| [IdentityServerApiScopes](#identityserverapiscopes) | Id | Links the claim to the corresponding API scope. | ### IdentityServerApiResourceProperties -IdentityServerApiResourceProperties Table is used to store properties of an API resource. - -#### Description +This table can be used to store information about properties, including the property key and value, and the associated API resource. These properties can be used to store additional metadata or configuration information related to the API resources. -This table stores the properties associated with IdentityServer API resources. Each record in the table represents a property and allows to manage and track the properties effectively. This table can be used to store information about properties, including the property key and value, and the associated API resource. These properties can be used to store additional metadata or configuration information related to the API resources. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerApiResources](#identityserverapiresources) | Id | To match the property with the API resource. | - ---- +| [IdentityServerApiResources](#identityserverapiresources) | Id | Links the property to the corresponding API resource. | ### IdentityServerIdentityResourceProperties -IdentityServerIdentityResourceProperties Table is used to store properties of an identity resource. +This table can be used to store information about properties, including the property key and value, and the associated identity resource. These properties can be used to store additional metadata or configuration information related to the identity resources. -#### Description - -This table stores the properties associated with IdentityServer identity resources. Each record in the table represents a property and allows to manage and track the properties effectively. This table can be used to store information about properties, including the property key and value, and the associated identity resource. These properties can be used to store additional metadata or configuration information related to the identity resources. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerIdentityResources](#identityserveridentityresources) | Id | To match the property with the identity resource. | - ---- +| [IdentityServerIdentityResources](#identityserveridentityresources) | Id | Links the property to the corresponding identity resource. | ### IdentityServerClientProperties -IdentityServerClientProperties Table is used to store properties of a client. - -#### Description - -This table stores the properties of a client in the application. Each record in the table represents a property of a client and allows to manage and track the properties effectively. This table can be used to store information about properties of a client, including the key, value and client id. It can also be used to manage and validate the properties of a client. +This table can be used to store information about properties of a client, including the key, value and client id. These properties can be used to store additional metadata or configuration information related to the clients. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerClients](#identityserverclients) | Id | To match the property with the client. | - ---- +| [IdentityServerClients](#identityserverclients) | Id | Links the property to the corresponding client. | ### IdentityServerApiScopeProperties -IdentityServerApiScopeProperties Table is used to store properties of an API scope. - -#### Description - -This table stores the properties associated with IdentityServer API scopes. Each record in the table represents a property and allows to manage and track the properties effectively. This table can be used to store information about properties, including the property key and value, and the associated API scope. These properties can be used to store additional metadata or configuration information related to the API scopes. +This table can be used to store information about properties of an API scope, including the key, value and API scope id. These properties can be used to store additional metadata or configuration information related to the API scopes. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerApiScopes](#identityserverapiscopes) | Id | To match the property with the API scope. | - ---- +| [IdentityServerApiScopes](#identityserverapiscopes) | Id | Links the property to the corresponding API scope. | ### IdentityServerApiResourceScopes -IdentityServerApiResourceScopes Table is used to store scopes of an API resource. - -#### Description +This table can be used to store information about scopes of an API resource, including the scope name and API resource id. -This table stores the scopes of an API resource in the application. Each record in the table represents a scope of an API resource and allows to manage and track the scopes effectively. This table can be used to store information about scopes of an API resource, including the scope name and API resource id. It can also be used to manage and validate the scopes of an API resource. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerApiResources](#identityserverapiresources) | Id | To match the scope with the API resource. | - ---- +| [IdentityServerApiResources](#identityserverapiresources) | Id | Links the scope to the corresponding API resource. | ### IdentityServerClientScopes -IdentityServerClientScopes Table is used to store scopes of a client. - -#### Description + This table can be used to store information about scopes of a client, including the scope and client id. -This table stores the scopes of a client in the application. Each record in the table represents a scope of a client and allows to manage and track the scopes effectively. This table can be used to store information about scopes of a client, including the scope and client id. It can also be used to manage and validate the scopes of a client. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerClients](#identityserverclients) | Id | To match the scope with the client. | - ---- +| [IdentityServerClients](#identityserverclients) | Id | Links the scope to the corresponding client. | ### IdentityServerApiResourceSecrets -IdentityServerApiResourceSecrets Table is used to store secrets of an API resource. +This table can be used to store information about secrets of an API resource, including the secret value, expiration date, and API resource id. -#### Description - -This table stores the secrets of an API resource in the application. Each record in the table represents a secret of an API resource and allows to manage and track the secrets effectively. This table can be used to store information about secrets of an API resource, including the secret value, expiration date, and API resource id. It can also be used to manage and validate the secrets of an API resource. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerApiResources](#identityserverapiresources) | Id | To match the secret with the API resource. | - ---- +| [IdentityServerApiResources](#identityserverapiresources) | Id | Links the secret to the corresponding API resource. | ### IdentityServerClientSecrets -IdentityServerClientSecrets Table is used to store secrets of a client. - -#### Description +This table can be used to store information about secrets of a client, including the secret value, expiration date, and client id. -This table stores the secrets of a client in the application. Each record in the table represents a secret of a client and allows to manage and track the secrets effectively. This table can be used to store information about secrets of a client, including the secret and client id. It can also be used to manage and validate the secrets of a client. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerClients](#identityserverclients) | Id | To match the secret with the client. | - ---- +| [IdentityServerClients](#identityserverclients) | Id | Links the secret to the corresponding client. | ### IdentityServerClientCorsOrigins -IdentityServerClientCorsOrigins Table is used to store CORS origins of a client. - -#### Description +This table can be used to store information about CORS origins of a client, including the origin and client id. It can also be used to manage and validate the CORS origins of a client. -This table stores the CORS origins of a client in the application. Each record in the table represents a CORS origin of a client and allows to manage and track the CORS origins effectively. This table can be used to store information about CORS origins of a client, including the origin and client id. It can also be used to manage and validate the CORS origins of a client. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerClients](#identityserverclients) | Id | To match the CORS origin with the client. | - ---- +| [IdentityServerClients](#identityserverclients) | Id | Links the CORS origin to the corresponding client. | ### IdentityServerClientGrantTypes -IdentityServerClientGrantTypes Table is used to store grant types of a client. +This table can be used to store information about grant types of a client, including the grant type and client id. -#### Description - -This table stores the grant types of a client in the application. Each record in the table represents a grant type of a client and allows to manage and track the grant types effectively. This table can be used to store information about grant types of a client, including the grant type and client id. It can also be used to manage and validate the grant types of a client. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerClients](#identityserverclients) | Id | To match the grant type with the client. | - ---- +| [IdentityServerClients](#identityserverclients) | Id | Links the grant type to the corresponding client. | ### IdentityServerClientIdPRestrictions -IdentityServerClientIdPRestrictions Table is used to store identity provider restrictions of a client. - -#### Description - -This table stores the identity provider restrictions of a client in the application. Each record in the table represents an identity provider restriction of a client and allows to manage and track the identity provider restrictions effectively. This table can be used to store information about identity provider restrictions of a client, including the identity provider and client id. It can also be used to manage and validate the identity provider restrictions of a client. +This table can be used to store information about identity provider restrictions of a client, including the identity provider and client id. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerClients](#identityserverclients) | Id | To match the identity provider restriction with the client. | - ---- +| [IdentityServerClients](#identityserverclients) | Id | Links the identity provider restriction to the corresponding client. | ### IdentityServerClientPostLogoutRedirectUris -IdentityServerClientPostLogoutRedirectUris Table is used to store post logout redirect URIs of a client. - -#### Description - -This table stores the post logout redirect URIs of a client in the application. Each record in the table represents a post logout redirect URI of a client and allows to manage and track the post logout redirect URIs effectively. This table can be used to store information about post logout redirect URIs of a client, including the post logout redirect URI and client id. It can also be used to manage and validate the post logout redirect URIs of a client. +This table can be used to store information about post logout redirect URIs of a client, including the post logout redirect URI and client id. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerClients](#identityserverclients) | Id | To match the post logout redirect URI with the client. | - ---- +| [IdentityServerClients](#identityserverclients) | Id | Links the post logout redirect URI to the corresponding client. | ### IdentityServerClientRedirectUris -IdentityServerClientRedirectUris Table is used to store redirect URIs of a client. - -#### Description +This table can be used to store information about redirect URIs of a client, including the redirect URI and client id. -This table stores the redirect URIs of a client in the application. Each record in the table represents a redirect URI of a client and allows to manage and track the redirect URIs effectively. This table can be used to store information about redirect URIs of a client, including the redirect URI and client id. It can also be used to manage and validate the redirect URIs of a client. - -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [IdentityServerClients](#identityserverclients) | Id | To match the redirect URI with the client. | - ---- +| [IdentityServerClients](#identityserverclients) | Id | Links the redirect URI to the corresponding client. | ### IdentityServerDeviceFlowCodes -IdentityServerDeviceFlowCodes Table is used to store device flow codes. - -#### Description - -This table stores the device flow codes in the application. Each record in the table represents a device flow code and allows to manage and track the device flow codes effectively. This table can be used to store information about device flow codes, including the user code, device code, subject id, client id, creation time, expiration, data and session id. It can also be used to manage and validate the device flow codes. - ---- +This table can be used to store information about device flow codes, including the user code, device code, subject id, client id, creation time, expiration, data and session id. ### IdentityServerPersistedGrants -IdentityServerPersistedGrants Table is used to store persisted grants. - -#### Description - -This table stores the persisted grants in the application. Each record in the table represents a persisted grant and allows to manage and track the persisted grants effectively. This table can be used to store information about persisted grants, including the key, type, subject id, client id, creation time, expiration, and data. It can also be used to manage and validate the persisted grants. - ---- +This table can be used to store information about persisted grants, including the key, type, subject id, client id, creation time, expiration, and data. ## Others ### AbpBlobContainers -AbpBlobContainers is a table that stores the information of the blob container. - -#### Description - -This table stores information about the BLOB (binary large object) containers in the application. Each record in the table represents a blob container and allows to manage and organize the blobs effectively. For example, you can use the `ContainerId` column to link each blob with its corresponding container in the [`AbpBlobs`](#abpblobs) table, so that you can easily manage and organize the blobs. - -#### Used By - -| Table | Column | Description | -| --- | --- | --- | -| [AbpBlobs](#abpblobs) | ContainerId | To match the blob. | - ---- +This table is important for providing a better user experience by allowing the application to support multiple containers and providing BLOB-specific features. ### AbpBlobs -AbpBlobs is a table to store blobs. - -#### Description - -This table stores the binary data of BLOBs (binary large objects) in the application. Each record in the table represents a BLOB and allows to manage and track the BLOBs effectively. Each BLOB is related to a container in the "AbpBlobContainers" table, where the container name, tenant id and other properties of the container can be found. +This table stores the binary data of BLOBs (binary large objects) in the application. Each BLOB is related to a container in the [AbpBlobContainers](#abpblobcontainers) table, where the container name, tenant id and other properties of the container can be found. -#### Uses +#### Foreign Keys | Table | Column | Description | | --- | --- | --- | -| [AbpBlobContainers](#abpblobcontainers) | Id | To match the blob container. | - ---- +| [AbpBlobContainers](#abpblobcontainers) | Id | Links the BLOB to the corresponding container. | ### AbpLocalizationResources -AbpLocalizationResources is a table that stores the localization resources. - -#### Description - -This table stores the localization resources for the application. Each record in the table represents a localization resource and allows to manage and track the resources effectively. This table is important for providing a better user experience by allowing the application to support multiple resources and providing localized text and other localization-specific features. - ---- +This table stores the localization resources for the application. This table is important for providing a better user experience by allowing the application to support multiple resources and providing localized text and other localization-specific features. ### AbpLocalizationTexts -AbpLocalizationTexts is a table that stores the localization texts. - -#### Description - -This table stores the localization texts in the application. Each record in the table represents a localization text for a specific resource, culture and language. The table contains the resource name, culture name, and a json encoded value which holds the key-value pair of localization text. It allows for efficient storage and management of localization texts and allows for easy update or addition of new translations for specific resources and cultures. \ No newline at end of file +The table contains the resource name, culture name, and a json encoded value which holds the key-value pair of localization text. It allows for efficient storage and management of localization texts and allows for easy update or addition of new translations for specific resources and cultures. \ No newline at end of file