Skip to content
Snippets Groups Projects
Commit fe4f9ab0 authored by Richard Cordovano's avatar Richard Cordovano
Browse files

Merge remote-tracking branch 'upstream/autopsy-release-4.3.0' into develop

parents 11f972c9 3072593e
Branches
Tags
No related merge requests found
...@@ -936,6 +936,13 @@ private int updateFromSchema4toSchema5(int schemaVersionNumber, CaseDbConnection ...@@ -936,6 +936,13 @@ private int updateFromSchema4toSchema5(int schemaVersionNumber, CaseDbConnection
statement.execute("CREATE TABLE file_encoding_types (encoding_type INTEGER PRIMARY KEY, name TEXT NOT NULL);"); statement.execute("CREATE TABLE file_encoding_types (encoding_type INTEGER PRIMARY KEY, name TEXT NOT NULL);");
initEncodingTypes(connection); initEncodingTypes(connection);
/*
* This needs to be done due to a Autopsy/TSK out of synch problem.
* Without this, it is possible to upgrade from version 4 to 5 and
* then 5 to 6, but not from 4 to 6.
*/
initReviewStatuses(connection);
// Add encoding type column to tsk_files_path // Add encoding type column to tsk_files_path
// This should really have the FOREIGN KEY constraint but there are problems // This should really have the FOREIGN KEY constraint but there are problems
// getting that to work, so we don't add it on this upgrade path. // getting that to work, so we don't add it on this upgrade path.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment