mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-23 13:34:19 +00:00
8 lines
No EOL
252 B
Python
8 lines
No EOL
252 B
Python
from ..base import Base
|
|
|
|
|
|
class Utente(Base.Model):
|
|
__tablename__ = "utente"
|
|
email = Base.Column(Base.String, primary_key=True)
|
|
username = Base.Column(Base.String, nullable=False)
|
|
password = Base.Column(Base.LargeBinary, nullable=False) |