liding
10 天以前 f05753606a24addc52e1a7874f3e801f640cf5cf
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`);