Skip to content

Commit d2a318c

Browse files
authored
Add bool flag to indicate purged processed folder in visit dir (#256)
1 parent 86824cc commit d2a318c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2025_02_14_BLSession_purgedProcessedData.sql', 'ONGOING');
2+
3+
ALTER TABLE BLSession
4+
ADD purgedProcessedData boolean DEFAULT 0
5+
COMMENT 'Flag to indicate whether the processed folder in the associated visit directory has been purged',
6+
ALGORITHM=INSTANT;
7+
8+
UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2025_02_14_BLSession_purgedProcessedData.sql';

0 commit comments

Comments
 (0)