Removed "expired" flag.

Signed-off-by: Cliff Hill <Clifford.hill@gsa.gov>
This commit is contained in:
Cliff Hill
2023-11-08 16:53:53 -05:00
parent 3e6a7931d8
commit d19cabed90
2 changed files with 2 additions and 3 deletions

View File

@@ -1931,7 +1931,6 @@ class InvitedUser(db.Model):
default=SMS_AUTH_TYPE,
)
folder_permissions = db.Column(JSONB(none_as_null=True), nullable=False, default=[])
expired = db.Column(db.Boolean, nullable=False, default=False)
# would like to have used properties for this but haven't found a way to make them
# play nice with marshmallow yet