DealCategories
Create, update, delete, and query Deal Categories.
テーブル固有の情報
Insert
新しいDeal の追加には、Category Name およびColor の設定が必須です。
INSERT INTO DealCategories (Name, Color) VALUES ('A unique deal category', '5df4b5')
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Integer | True |
The unique identifier for the category. | |
| Name | String | False |
The name of the category. | |
| Color | String | False |
The color as a hex value. | |
| AccountId | Integer | True |
A reference to the account. | |
| ElementsCount | Integer | True |
The number of elements in the category. | |
| CreatedAt | Datetime | True |
The date and time when this record was created. | |
| UpdatedAt | Datetime | True |
The date and time when this record was last updated. |