DEPARTMENT
Description
This table stores information about departments within the system. Each department has a unique ID, a name, a description, and is linked to a user group.
| Column Name | Data Type | Description |
| ID | bigint(20) |
Primary key, unique identifier for each department. |
| DESCRIPTION | varchar(255) |
A description of the department. This can be NULL. |
| GROUP_ID | bigint(20) |
The ID of the corresponding user group in the platform. This has a unique constraint. |
| NAME_ | varchar(255) |
The name of the department. This field is mandatory and cannot be
NULL. |