Volunteer Janitor: Initial duty acquisition.

This commit is contained in:
Ben Rog-Wilhelm 2022-11-19 01:32:46 -06:00 committed by Ben Rog-Wilhelm
parent e43db0535d
commit 03b323c7a1
7 changed files with 149 additions and 6 deletions

View file

@ -110,6 +110,7 @@ class User(Base):
original_username = deferred(Column(String))
referred_by = Column(Integer, ForeignKey("users.id"))
subs_created = Column(Integer, default=0, nullable=False)
volunteer_last_started_utc = Column(DateTime, nullable=True)
Index(
'users_original_username_trgm_idx',