7 lines
219 B
SQL
7 lines
219 B
SQL
|
|
CREATE TABLE `wa_user_team` (
|
||
|
|
`descendant_id` int NOT NULL,
|
||
|
|
`ancestor_id` int NOT NULL,
|
||
|
|
`depth` int DEFAULT NULL,
|
||
|
|
`status` tinyint DEFAULT '0'
|
||
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|