Skip to content

Commit

Permalink
Changed SQLite storage file schema to use BIGINT for timestamp log2ti…
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz authored and Onager committed Jun 30, 2018
1 parent ca37907 commit b2f8426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plaso/storage/sqlite/sqlite_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class SQLiteStorageFile(interface.BaseStorageFile):
_CREATE_EVENT_TABLE_QUERY = (
'CREATE TABLE {0:s} ('
'_identifier INTEGER PRIMARY KEY AUTOINCREMENT,'
'_timestamp INTEGER,'
'_timestamp BIGINT,'
'_data {1:s});')

_HAS_TABLE_QUERY = (
Expand Down

0 comments on commit b2f8426

Please sign in to comment.