From 874ee45d5f49f402376ad7589ec0217fc599d72a Mon Sep 17 00:00:00 2001 From: Hankin Date: Fri, 29 Nov 2024 17:02:18 +0800 Subject: [PATCH] customer_service --- 1732845832_create_table_customer_service_type.up.sql | 4 ++-- 1732846388_create_table_customer_service.up.sql | 4 ++-- 1732869307_create_table_chat_linkmen.up.sql | 6 +++--- 1732869331_create_table_chat_message.up.sql | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/1732845832_create_table_customer_service_type.up.sql b/1732845832_create_table_customer_service_type.up.sql index a58f6df..2cb1f70 100644 --- a/1732845832_create_table_customer_service_type.up.sql +++ b/1732845832_create_table_customer_service_type.up.sql @@ -1,6 +1,6 @@ CREATE TABLE `ufutx_customer_service_type` ( `id` bigint(20) UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL , - `created_at` timestamp default NULL, - `updated_at` timestamp default NULL + `created_at` timestamp null default NULL, + `updated_at` timestamp null default NULL ) \ No newline at end of file diff --git a/1732846388_create_table_customer_service.up.sql b/1732846388_create_table_customer_service.up.sql index 6f408de..971561d 100644 --- a/1732846388_create_table_customer_service.up.sql +++ b/1732846388_create_table_customer_service.up.sql @@ -3,6 +3,6 @@ CREATE TABLE `ufutx_customer_service` ( `type_id` bigint(20) UNSIGNED NOT NULL comment "客服类型id", `type_name` varchar(100) NOT NULL comment "客服类型", `user_id` bigint(20) UNSIGNED NOT NULL comment "用户id", - `created_at` timestamp default null, - `updated_at` timestamp default NULL + `created_at` timestamp null default null, + `updated_at` timestamp null default NULL ) \ No newline at end of file diff --git a/1732869307_create_table_chat_linkmen.up.sql b/1732869307_create_table_chat_linkmen.up.sql index 175ca8a..fba7689 100644 --- a/1732869307_create_table_chat_linkmen.up.sql +++ b/1732869307_create_table_chat_linkmen.up.sql @@ -2,7 +2,7 @@ CREATE TABLE `ufutx_chat_linkman` ( `id` bigint(20) UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT, `user_id` bigint(20) UNSIGNED NOT NULL comment "当前用户", `other_user_id` bigint(20) UNSIGNED NOT NULL comment "其他用户 ", - `created_at` timestamp default null, - `updated_at` timestamp default null, - `deleted_at` timestamp default null + `created_at` timestamp null default null, + `updated_at` timestamp null default null, + `deleted_at` timestamp null default null ) \ No newline at end of file diff --git a/1732869331_create_table_chat_message.up.sql b/1732869331_create_table_chat_message.up.sql index dc80d02..545bb57 100644 --- a/1732869331_create_table_chat_message.up.sql +++ b/1732869331_create_table_chat_message.up.sql @@ -8,6 +8,6 @@ CREATE TABLE `ufutx_chat_message` ( `msg_timestamp` varchar(100) NOT NULL comment "云信消息时间", `is_recall` tinyInt(4) UNSIGNED default 0 comment "是否撤回, 0:未撤回。1:已撤回", `data` text NOT NULL comment "抄送消息", - `created_at` timestamp default null, - `updated_at` timestamp default null + `created_at` timestamp null default null, + `updated_at` timestamp null default null ) \ No newline at end of file