feat: show author name instead of user x
This commit was merged in pull request #7.
This commit is contained in:
@@ -16,6 +16,7 @@ class Blog(Base):
|
||||
id = Column(Integer, primary_key=True, index=True)
|
||||
title = Column(String, index=True)
|
||||
author_id = Column(Integer, nullable=False, index=True)
|
||||
author_name = Column(String, nullable=False, index=True)
|
||||
description = Column(String, nullable=True)
|
||||
body = Column(String, nullable=False)
|
||||
created_at = Column(
|
||||
|
||||
Reference in New Issue
Block a user