migrate/1732869307_create_table_chat_linkmen.up.sql

8 lines
382 B
MySQL
Raw Normal View History

2024-11-29 16:57:34 +08:00
CREATE TABLE `ufutx_chat_linkman` (
`id` bigint(20) UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) UNSIGNED NOT NULL comment "当前用户",
`other_user_id` bigint(20) UNSIGNED NOT NULL comment "其他用户 ",
2024-11-29 17:02:18 +08:00
`created_at` timestamp null default null,
`updated_at` timestamp null default null,
`deleted_at` timestamp null default null
2024-11-29 16:57:34 +08:00
)