From b841254a7c7e76ec0b23a0c4097f6eb7c3b986dd Mon Sep 17 00:00:00 2001 From: Meiliang Dong Date: Fri, 6 Jan 2023 14:50:52 +0800 Subject: [PATCH] Correct MySQL's DATETIME type name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 43b3e64..645f1b2 100644 --- a/README.md +++ b/README.md @@ -834,7 +834,7 @@ logger.error(various parameters or objects toString + "_" + e.getMessage(), e); 8\. **[Mandatory]** The length of *varchar* should not exceed 5000, otherwise it should be defined as `text`. It is better to store them in a separate table in order to avoid its effect on indexing efficiency of other columns. 9\. **[Mandatory]** A table must include three columns as following: *id*, *gmt_create* and *gmt_modified*. -> Note: *id* is the primary key, which is *unsigned bigint* and self-incrementing with step length of 1. The type of *gmt_create* and *gmt_modified* should be *DATE_TIME*. +> Note: *id* is the primary key, which is *unsigned bigint* and self-incrementing with step length of 1. The type of *gmt_create* and *gmt_modified* should be *DATETIME*. 10\. **[Recommended]** It is recommended to define table name as *[table_business_name]_[table_purpose]*. > Positive example: *tiger_task* / *tiger_reader* / *mpp_config*