We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15947f5 commit 6c8b340Copy full SHA for 6c8b340
README.md
@@ -257,7 +257,7 @@ Base = declarative_base()
257
258
class UserInfo(Base):
259
__tablename__ = "users"
260
- id = Column(Integer, pk=True)
+ id = Column(Integer, primary_key=True)
261
full_name = Column(String)
262
public_name = Column(String)
263
hobbies = Column(String)
@@ -270,7 +270,7 @@ class UserInfo(Base):
270
271
class PublicUserInfo(Base):
272
__tablename__ = 'public_users'
273
274
275
276
0 commit comments