Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/autopsy-release-4.3.0' into de…
Browse files Browse the repository at this point in the history
…velop
  • Loading branch information
rcordovano committed Jan 11, 2017
2 parents 11f972c + 3072593 commit fe4f9ab
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bindings/java/src/org/sleuthkit/datamodel/SleuthkitCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);");
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
// 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.
Expand Down

0 comments on commit fe4f9ab

Please sign in to comment.