self-review

This commit is contained in:
Igor Loskutov
2025-06-18 17:32:13 -04:00
parent 3acbcd9952
commit 9c20e8b9f6
3 changed files with 7 additions and 6 deletions

View File

@@ -70,6 +70,9 @@ transcripts = sqlalchemy.Table(
Enum(SourceKind, values_callable=lambda obj: [e.value for e in obj]),
nullable=False,
),
# indicative field: whether associated audio is deleted
# the main "audio deleted" is the presence of the audio itself / consents not-given
# same field could've been in recording/meeting, and it's maybe even ok to dupe it at need
sqlalchemy.Column("audio_deleted", sqlalchemy.Boolean, nullable=True),
)