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

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
)