mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
545 B
12 lines
545 B
1 year ago
|
CREATE TABLE `p_following` (
|
||
|
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
||
|
`user_id` bigint unsigned NOT NULL,
|
||
|
`follow_id` bigint unsigned NOT NULL,
|
||
|
`is_del` tinyint NOT NULL DEFAULT 0, -- 是否删除, 0否, 1是
|
||
|
`created_on` bigint unsigned NOT NULL DEFAULT '0',
|
||
|
`modified_on` bigint unsigned NOT NULL DEFAULT '0',
|
||
|
`deleted_on` bigint unsigned NOT NULL DEFAULT '0',
|
||
|
PRIMARY KEY (`id`) USING BTREE,
|
||
|
KEY `idx_following_user_follow` (`user_id`,`follow_id`) USING BTREE
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|