fix[2]
This commit is contained in:
parent
7ff250c3d5
commit
46d1d7b307
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ Base = declarative_base()
|
|||
class User(Base):
|
||||
__tablename__ = 'users'
|
||||
id = Column(Integer, primary_key=True)
|
||||
username = Column(String, unique=False, nullable=False)
|
||||
username = Column(String, nullable=False)
|
||||
password = Column(String, nullable=False)
|
||||
|
||||
class Asks(Base):
|
||||
|
|
Loading…
Add table
Reference in a new issue