Skip to content

Commit f254ef5

Browse files
committed
Add processed tomogram feature enum
1 parent b35d42e commit f254ef5

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2026_02_09_ProcessedTomogram_feature.sql', 'ONGOING');
2+
3+
ALTER TABLE ProcessedTomogram
4+
ADD feature enum(
5+
'Membrane',
6+
'Microtubule',
7+
'Ribosome',
8+
'Tric',
9+
'Actin',
10+
'Cytoplasm',
11+
'Cytoplasmic granule',
12+
'Lipid droplet',
13+
'Mitochondrial granule',
14+
'Mitochondrion',
15+
'Npc',
16+
'Nuclear envelope',
17+
'Nucleus',
18+
'Prohibitin',
19+
'Proteasome',
20+
'Vault',
21+
'Vimentin',
22+
'Void')
23+
COMMENT 'Tomogram feature',
24+
ALGORITHM=INSTANT;
25+
26+
UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2026_02_09_ProcessedTomogram_feature.sql';

0 commit comments

Comments
 (0)