migrate/1732846388_create_table_customer_service.up.sql

8 lines
393 B
MySQL
Raw Normal View History

2024-11-29 16:57:34 +08:00
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",
2024-11-29 17:02:18 +08:00
`created_at` timestamp null default null,
`updated_at` timestamp null default NULL
2024-11-29 16:57:34 +08:00
)