customer_service

This commit is contained in:
Hankin 2024-11-29 16:59:54 +08:00
parent 32d7933286
commit 10889e8409
2 changed files with 4 additions and 4 deletions

View File

@ -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 NOT NULL,
`updated_at` timestamp NOT NULL
`created_at` timestamp default NULL,
`updated_at` timestamp default NULL
)

View File

@ -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 NOT NULL,
`updated_at` timestamp NOT NULL
`created_at` timestamp default null,
`updated_at` timestamp default NULL
)