Skip to content

Commit

Permalink
Update Windows_Photos.smap
Browse files Browse the repository at this point in the history
  • Loading branch information
hyuunnn committed Aug 18, 2022
1 parent 26fc54b commit fbd39dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions SQLMap/Maps/Windows_Photos.smap
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ Version: 1.0
CSVPrefix: WindowsPhotos
FileName: MediaDb.v1.sqlite
IdentifyQuery: SELECT count(*) FROM sqlite_master WHERE type='table' AND (name='Item' OR name='Folder');
IdentifyValue: 2
IdentifyValue: 2
Queries:
-
Name: Windows Photos Items
Name: Windows Photos Items
Query: |
select item.Item_FileName AS Item_FileName,
item.Item_FileSize AS Item_FileSize,
Expand All @@ -24,14 +24,14 @@ Queries:
datetime((item.Item_DateCreated - 116444736000000000) / 10000000, 'unixepoch', 'localtime') AS Item_DateCreated,
datetime((item.Item_DateModified - 116444736000000000) / 10000000, 'unixepoch', 'localtime') AS Item_DateModified,
datetime((item.Item_DateIngested - 116444736000000000) / 10000000, 'unixepoch', 'localtime') AS Item_DateIngested
FROM item
FROM item
LEFT JOIN ApplicationName ON item.Item_ApplicationNameId = ApplicationName.ApplicationName_Id
LEFT JOIN CameraManufacturer ON item.Item_CameraManufacturerId = CameraManufacturer.CameraManufacturer_Id
LEFT JOIN CameraModel ON item.Item_CameraModelId = CameraModel.CameraModel_Id
ORDER BY Item_DateCreated DESC
BaseFileName: ItemDB
-
Name: Windows Photos Folders
Name: Windows Photos Folders
Query: |
select Folder.Folder_Path AS Folder_Path,
Folder.Folder_DisplayName AS Folder_DisplayName,
Expand Down

0 comments on commit fbd39dc

Please sign in to comment.