liyong
3 天以前 f57064d2fa563ee4cfeeccd715850ba8b8aa4f60
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`);