-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move selected to files qcstatus #1608
Move selected to files qcstatus #1608
Conversation
…le table to the files_qc_status table
…f storing that information into the parameter_file table
while you have an SQL patch for existing databases, I believe the schema should be updated as well when creating from scratch tables files_qcstatus and parameter_files. |
Very good point! I just added it to the Default schema. Thank you!! |
Current coverage is
|
Just tested this on my VM before and after applying the SQL patch. Info got copied properly into the added column, and further changes to the Image Panel in Imaging browser (namely the Selected field) resulted in the information being saved in the files_qcstatus table. |
@@ -0,0 +1,10 @@ | |||
/* ALTER files_qcstatus table to add a Selected column */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These should be -- at the start of the line for a comment, not /* ... /. / is a php comment, -- is an SQL comment.
This is fixed now. Thank you! |
Does this have any impact on the DQT loading script or Statistics (Imaging subtab)? |
This pull request moves the selected information of the imaging browser into the files_qcstatus table.
Until now, this information was inserted into the parameter_file table and could be lost if need to reinsert the imaging data.