liding
5 天以前 ca94c13fe00a57291587493dfebd543209885631
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`);