first commit

This commit is contained in:
Senad Uka
2017-11-07 09:23:57 +01:00
commit 0eee92660a
356 changed files with 747259 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from sqlalchemy import Column, Integer, Unicode
from helix.models.sql.shared_sql_base import Base
class User(Base):
__tablename__ = 'users'
id = Column(Integer, primary_key=True)
username = Column(Unicode, nullable=False)
password_hash = Column(Unicode, nullable=False)