buhuazhen
10 天以前 fe058347969127ef92e85f89623abde268b29fab
1
2
3
4
5
-- account_subject 增加父级科目字段(树形结构)
ALTER TABLE `account_subject`
ADD COLUMN `parent_id` bigint NULL COMMENT '父科目ID(为空表示根节点)' AFTER `id`;
 
CREATE INDEX `idx_account_subject_parent_id` ON `account_subject` (`parent_id`);