customer_service
This commit is contained in:
parent
32d7933286
commit
10889e8409
@ -1,6 +1,6 @@
|
|||||||
CREATE TABLE `ufutx_customer_service_type` (
|
CREATE TABLE `ufutx_customer_service_type` (
|
||||||
`id` bigint(20) UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT,
|
`id` bigint(20) UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT,
|
||||||
`name` varchar(100) NOT NULL ,
|
`name` varchar(100) NOT NULL ,
|
||||||
`created_at` timestamp NOT NULL,
|
`created_at` timestamp default NULL,
|
||||||
`updated_at` timestamp NOT NULL
|
`updated_at` timestamp default NULL
|
||||||
)
|
)
|
@ -3,6 +3,6 @@ CREATE TABLE `ufutx_customer_service` (
|
|||||||
`type_id` bigint(20) UNSIGNED NOT NULL comment "客服类型id",
|
`type_id` bigint(20) UNSIGNED NOT NULL comment "客服类型id",
|
||||||
`type_name` varchar(100) NOT NULL comment "客服类型",
|
`type_name` varchar(100) NOT NULL comment "客服类型",
|
||||||
`user_id` bigint(20) UNSIGNED NOT NULL comment "用户id",
|
`user_id` bigint(20) UNSIGNED NOT NULL comment "用户id",
|
||||||
`created_at` timestamp NOT NULL,
|
`created_at` timestamp default null,
|
||||||
`updated_at` timestamp NOT NULL
|
`updated_at` timestamp default NULL
|
||||||
)
|
)
|
Loading…
Reference in New Issue
Block a user