Skip to content

Commit 7304420

Browse files
authored
Update model.py
修改文本错误
1 parent dcb062f commit 7304420

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/plugins/poem/app/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Poem(Base):
88
id = Column(Integer, primary_key=True, autoincrement=True)
99
title = Column(String(50), nullable=False, comment='标题')
1010
author = Column(String(50), default='未名', comment='作者')
11-
dynasty = Column(String(50), default='位置', comment='朝代')
11+
dynasty = Column(String(50), default='未知', comment='朝代')
1212
content = Column(Text, nullable=False, comment='内容')
1313
image = Column(String(255), default='', comment='配图')
1414

0 commit comments

Comments
 (0)