migrate/1732846388_create_table_customer_service.up.sql
2024-11-29 16:59:54 +08:00

8 lines
383 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 default null,
`updated_at` timestamp default NULL
)