8 lines
375 B
SQL
8 lines
375 B
SQL
CREATE TABLE `ufutx_customer_service` (
|
|
`id` bigint(20) UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT,
|
|
`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
|
|
) |