BusinessHours
Query from BusinessHours table
Table Specific Information
Note: Only users with admin privileges can access the following Table.
Select
Following is an example to select all entries from BusinessHours table:
SELECT * FROM BusinessHours
You can also select a specific entry from BusinessHours table:
SELECT * FROM BusinessHours WHERE Id = 100
Columns
| Name | Type | Description |
| Id [KEY] | Bigint | Business hour ID. |
| Description | String | Description of the business hour. |
| Name | String | Name of the business hour. |
| IsDefault | Boolean | True if this is the default business hour. |
| TimeZone | String | Denotes the time zone of the business hour. |
| business_hours | String | Collection of start time and end time of days of a week. |
| CreatedAt | Datetime | Business hour creation timestamp. |
| UpdatedAt | Datetime | Business hour updated timestamp. |