migrate/1732869307_create_table_chat_linkmen.up.sql
2024-11-29 17:02:18 +08:00

8 lines
382 B
SQL

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 "其他用户 ",
`created_at` timestamp null default null,
`updated_at` timestamp null default null,
`deleted_at` timestamp null default null
)