Database – Checklist Entity (checklist_entity)
Description
This entity holds the meta-data for checklists. This includes the checklist name, description, and status. Checklist items are stored in 'checklist_item_entity'.
Column | Data Type | Column Info | Value Notes | Other |
id | int(11) | The id of the entity | ||
entity_type | char(100) | Type of the associated entity | Entity.Loan | |
title | varchar(255) | The name/title of the entity instance | ||
description | varchar(255) | The description of the entity instance | ||
created | timestamp | Timestamp of when the entity was created | ||
lastUpdated | timestamp | Timestamp of when the entity was last updated | ||
active | tinyint(1) | Whether or not the entity is active | 1 - yes, 0 - no | |
deleted | tinyint(1) | Whether or not the entity was deleted | 1 - yes, 0 - no |