[2ff88f42] einfügen
einfügen
This commit is contained in:
@@ -205,8 +205,12 @@ class Persona(Base):
|
||||
id = Column(Integer, primary_key=True, index=True)
|
||||
name = Column(String, unique=True, index=True) # Matches the 'role' string in JobRolePattern
|
||||
|
||||
description = Column(Text, nullable=True) # NEW: Role description / how they think
|
||||
pains = Column(Text, nullable=True) # JSON list or multiline string
|
||||
gains = Column(Text, nullable=True) # JSON list or multiline string
|
||||
convincing_arguments = Column(Text, nullable=True) # NEW: What convinces them
|
||||
typical_positions = Column(Text, nullable=True) # NEW: Typical titles
|
||||
kpis = Column(Text, nullable=True) # NEW: Relevant KPIs
|
||||
|
||||
created_at = Column(DateTime, default=datetime.utcnow)
|
||||
updated_at = Column(DateTime, default=datetime.utcnow, onupdate=datetime.utcnow)
|
||||
|
||||
Reference in New Issue
Block a user