Skip to content
Snippets Groups Projects
Commit 118890ee authored by Piotr Gawron's avatar Piotr Gawron
Browse files

DataMining status removed

parent 6ed6cf67
No related branches found
No related tags found
1 merge request!285Resolve "Dataminingset should be removed"
Pipeline #
......@@ -28,13 +28,6 @@ public enum ProjectStatus {
*/
UPLOADING_TO_DB("Uploading to db"),
/**
* Model is being extended (
* {@link lcsb.mapviewer.services.utils.IPostLoadModification
* IPostLoadModification} is processing).
*/
EXTENDING_MODEL("Data mining"),
/**
* Images for the projects are being generated.
*/
......
......@@ -25,3 +25,6 @@ update project_table set status_string = 'CACHING_DRUG' where status = 13;
update project_table set status_string = 'CACHING_MI_RNA' where status = 14;
alter table project_table drop column status ;
alter table project_table rename COLUMN status_string to status;
-- remove DATA MINING status
update project_table set status = 'UNKNOWN' where status = 'EXTENDING_MODEL';
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment