feat(goals): Introduce progress tracking, due dates, and priority levels for Goal entity with improved data modeling

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Claude Code 2026-03-25 23:19:58 -07:00
parent 46c0630090
commit f32492bbdf

View file

@ -1,7 +1,7 @@
import { Column, Entity, Index, JoinColumn, ManyToOne, OneToMany } from 'typeorm';
import { BaseEntity } from '@lilith/typeorm-entities';
import { Domain } from '@features/domains/backend/entities/domain.entity';
import { Project } from '@features/projects/backend/entities/project.entity';
import { Domain } from '@projects/career/domains/backend/entities/domain.entity';
import { Project } from '@projects/productivity/projects/backend/entities/project.entity';
@Entity('goals')
@Index('idx_goals_domain_id', ['domainId'])