clean up of notes, comments, BUGs, etc.

This commit is contained in:
2022-01-20 17:49:58 +11:00
parent 3010f8b6f4
commit a856bcd6b2
2 changed files with 5 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ class PA_UserState(db.Model):
fullscreen = db.Column(db.Boolean, unique=False, nullable=False )
root = db.Column(db.String, unique=False, nullable=False )
cwd = db.Column(db.String, unique=False, nullable=False )
## for now being lazy and not doing a separate table until I settle on needed fields and when
## this is non normal form, but this table only ever has a handful of rows per user, not worth the extra effort
# only used if ptype == View
view_eid = db.Column(db.Integer, unique=False, nullable=False )
orig_ptype = db.Column(db.String, unique=False, nullable=False )