ispyb / ispyb-database-modeling

4 stars 3 forks source link

BLSession.archived boolean #44

Closed KarlLevik closed 4 years ago

KarlLevik commented 5 years ago

We'd like to have another column in the BLSession table: archived boolean DEFAULT False.

The purpose is to tell the application that the data is archived and no longer available on disk.

ALTER TABLE BLSession
    ADD archived boolean DEFAULT False 
        COMMENT 'The data for the session is archived and no longer available on disk';
KarlLevik commented 5 years ago

This was agreed to be fine at the VC meeting today.

I'll create PR for this at some point.