We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcb062f commit 7304420Copy full SHA for 7304420
1 file changed
app/plugins/poem/app/model.py
@@ -8,7 +8,7 @@ class Poem(Base):
8
id = Column(Integer, primary_key=True, autoincrement=True)
9
title = Column(String(50), nullable=False, comment='标题')
10
author = Column(String(50), default='未名', comment='作者')
11
- dynasty = Column(String(50), default='位置', comment='朝代')
+ dynasty = Column(String(50), default='未知', comment='朝代')
12
content = Column(Text, nullable=False, comment='内容')
13
image = Column(String(255), default='', comment='配图')
14
0 commit comments