diff options
author | Wolfgang Müller | 2021-05-01 17:48:59 +0200 |
---|---|---|
committer | Wolfgang Müller | 2021-05-01 17:49:23 +0200 |
commit | 0b6ce2c57d53d947b15f0d429d2216df61ce3783 (patch) | |
tree | 162c32a8185cb8f0d5daf64c3de9944c2487b8aa | |
parent | c69598f4f8deb98071c9908f84efba94a1a02321 (diff) | |
download | quarg-0b6ce2c57d53d947b15f0d429d2216df61ce3783.tar.gz |
tables: Fix up a note, add another for the Network table
Diffstat (limited to '')
-rw-r--r-- | quarg/database/tables.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/quarg/database/tables.py b/quarg/database/tables.py index ea82f52..10e6057 100644 --- a/quarg/database/tables.py +++ b/quarg/database/tables.py @@ -7,8 +7,8 @@ from sqlalchemy.orm import relationship Base = declarative_base() -# Note: To keep SQLAlchemy from selecting columns that we will never end up -# using, we have commented out unused ones +# Note: We have commented out unused columns to keep SQLAlchemy from selecting +# ones that we never end up using class Backlog(Base): __tablename__ = 'backlog' @@ -59,6 +59,8 @@ class QuasselUser(Base): # hashversion = Column(Integer) # authenticator = Column(Text) +# The following table is huge and largely irrelevant for quarg, so instead of +# commenting out unused columns, don't even bother listing them all class Network(Base): __tablename__ = 'network' networkid = Column(Integer, primary_key=True) |