플레이어 세대 기록 초기화 및 세대 계산 및 사망 기록 등 기능 수정
This commit is contained in:
@@ -15,3 +15,12 @@ class AncestorDeath(Base):
|
||||
created_at: Mapped[datetime] = mapped_column(default=datetime.now, nullable=False)
|
||||
|
||||
|
||||
# 문지기 NPC 대사 캐시 모델
|
||||
class DialogueCache(Base):
|
||||
__tablename__ = 'dialogue_caches'
|
||||
|
||||
generation: Mapped[int] = mapped_column(primary_key=True)
|
||||
dialogue: Mapped[str] = mapped_column(String(500), nullable=False)
|
||||
created_at: Mapped[datetime] = mapped_column(default=datetime.now, nullable=False)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user