Skip to content

Commit

Permalink
Change data type for comments from text to varchar(255)
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlLevik committed Aug 8, 2024
1 parent 9132b77 commit 10237a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schemas/ispyb/updates/2024_08_08_ProcessedTomogram.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CREATE TABLE ProcessedTomogram (
processedTomogramId int(11) unsigned PRIMARY KEY AUTO_INCREMENT,
tomogramId int(11) unsigned NOT NULL COMMENT 'references Tomogram table',
filePath varchar(255) DEFAULT NULL COMMENT 'location on disk for the tomogram file',
comments TEXT DEFAULT NULL COMMENT 'comments on the nature of the processed tomogram',
comments varchar(255) DEFAULT NULL COMMENT 'comments on the nature of the processed tomogram',
FOREIGN KEY (tomogramId)
REFERENCES Tomogram(tomogramId)
ON DELETE CASCADE
Expand Down

0 comments on commit 10237a6

Please sign in to comment.