mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-17 17:24:51 +02:00
48 lines
1.6 KiB
Python
48 lines
1.6 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# Copyright (C) 2021 GNS3 Technologies Inc.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from sqlalchemy import Boolean, Column, ForeignKey, Integer, String, DateTime, func
|
|
from sqlalchemy.orm import relationship
|
|
|
|
from .base import BaseTable, generate_uuid, GUID
|
|
|
|
|
|
class User(BaseTable):
|
|
|
|
__tablename__ = "users"
|
|
|
|
user_id = Column(GUID, primary_key=True, default=generate_uuid)
|
|
username = Column(String, unique=True, index=True)
|
|
email = Column(String, unique=True, index=True)
|
|
full_name = Column(String)
|
|
hashed_password = Column(String)
|
|
is_active = Column(Boolean, default=True)
|
|
is_superuser = Column(Boolean, default=False)
|
|
|
|
|
|
# items = relationship("Item", back_populates="owner")
|
|
#
|
|
#
|
|
# class Item(Base):
|
|
# __tablename__ = "items"
|
|
#
|
|
# id = Column(Integer, primary_key=True, index=True)
|
|
# title = Column(String, index=True)
|
|
# description = Column(String, index=True)
|
|
# owner_id = Column(Integer, ForeignKey("users.id"))
|
|
#
|
|
# owner = relationship("User", back_populates="items") |