You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
329 B
11 lines
329 B
from sqlalchemy import Column, Integer, String |
|
from sqlalchemy.ext.declarative import declarative_base |
|
|
|
Base = declarative_base() |
|
|
|
|
|
class User(Base): |
|
__tablename__ = 'users' |
|
id = Column(Integer, primary_key=True) |
|
username = Column(String(50), nullable=False) |
|
hashed_password = Column(String(100), nullable=False)
|
|
|