mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-14 08:56:15 +00:00
Merge branch 'develop' into 1408-add-waypoint-list-to-route-artifacts
This commit is contained in:
commit
24c49ee678
@ -260,7 +260,7 @@ public class CorrelationAttributeInstance implements Serializable {
|
||||
for (Account.Type type : Account.Type.PREDEFINED_ACCOUNT_TYPES) {
|
||||
// Skip Phone and Email accounts as there are already Correlation types defined for those.
|
||||
if (type != Account.Type.EMAIL && type != Account.Type.PHONE) {
|
||||
defaultCorrelationTypes.add(new CorrelationAttributeInstance.Type(correlationTypeId, type.getDisplayName(), type.getTypeName().toLowerCase(), true, true)); //NON-NLS
|
||||
defaultCorrelationTypes.add(new CorrelationAttributeInstance.Type(correlationTypeId, type.getDisplayName(), type.getTypeName().toLowerCase() + "_acct", true, true)); //NON-NLS
|
||||
correlationTypeId++;
|
||||
}
|
||||
}
|
||||
|
@ -701,8 +701,10 @@ public class RdbmsCentralRepoFactory {
|
||||
+ "created_date " + getBigIntType(selectedPlatform) + " ,"
|
||||
+ "modified_date " + getBigIntType(selectedPlatform) + " ,"
|
||||
+ "status_id integer NOT NULL,"
|
||||
+ "examiner_id integer NOT NULL,"
|
||||
+ "CONSTRAINT uuid_unique UNIQUE(uuid),"
|
||||
+ "FOREIGN KEY (status_id) REFERENCES persona_status(status_id)"
|
||||
+ "FOREIGN KEY (status_id) REFERENCES persona_status(status_id), "
|
||||
+ "FOREIGN KEY (examiner_id) REFERENCES examiners(id)"
|
||||
+ ")";
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user