Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@ History
Unreleased / master
-------------------

4.4.0 (2025-29-01)
4.5.0 (2025-02-25)
-------------------

New or modified tables and columns:

- Add ``purgedProcessedData`` boolean column to the ``BLSession`` table. This is
a flag to indicate whether the ``processed`` folder in the associated visit
directory has been purged.

4.4.0 (2025-01-29)
-------------------

New or modified tables and columns:
Expand Down
6 changes: 4 additions & 2 deletions schemas/ispyb/lookups.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

/*!40000 ALTER TABLE `AdminVar` DISABLE KEYS */;
INSERT INTO `AdminVar` (`varId`, `name`, `value`) VALUES (4,'schemaVersion','4.4.0');
INSERT INTO `AdminVar` (`varId`, `name`, `value`) VALUES (4,'schemaVersion','4.5.0');
/*!40000 ALTER TABLE `AdminVar` ENABLE KEYS */;

/*!40000 ALTER TABLE `SchemaStatus` DISABLE KEYS */;
Expand Down Expand Up @@ -273,7 +273,9 @@ INSERT INTO `SchemaStatus` (`schemaStatusId`, `scriptName`, `schemaStatus`, `rec
(301,'2024_12_05_AdminVar_bump_version.sql','DONE','2024-12-05 13:27:18'),
(302,'2025_01_08_ParticleClassificationGroup_binnedPixelSize.sql','DONE','2025-01-29 10:29:27'),
(303,'2025_01_24_Tomogram_gridSquare.sql','DONE','2025-01-29 10:29:27'),
(304,'2025_01_29_AdminVar_bump_version.sql','DONE','2025-01-29 10:29:27');
(304,'2025_01_29_AdminVar_bump_version.sql','DONE','2025-01-29 10:29:27'),
(305,'2025_02_14_BLSession_purgedProcessedData.sql','DONE','2025-02-25 15:51:29'),
(306,'2025_02_25_AdminVar_bump_version.sql','DONE','2025-02-25 15:51:30');
/*!40000 ALTER TABLE `SchemaStatus` ENABLE KEYS */;

/*!40000 ALTER TABLE `ComponentType` DISABLE KEYS */;
Expand Down
Loading