Skip to content

Commit

Permalink
Cosmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
andresriancho committed Mar 28, 2019
1 parent 7ad600d commit 556aacf
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions w3af/core/data/db/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,21 @@ class HistoryItem(object):
_db = None
_DATA_TABLE = 'history_items'
_COLUMNS = [
('id', 'INTEGER'), ('url', 'TEXT'), ('code', 'INTEGER'),
('tag', 'TEXT'), ('mark', 'INTEGER'), ('info', 'TEXT'),
('time', 'FLOAT'), ('msg', 'TEXT'), ('content_type', 'TEXT'),
('charset', 'TEXT'), ('method', 'TEXT'), ('response_size', 'INTEGER'),
('codef', 'INTEGER'), ('alias', 'TEXT'), ('has_qs', 'INTEGER')
('id', 'INTEGER'),
('url', 'TEXT'),
('code', 'INTEGER'),
('tag', 'TEXT'),
('mark', 'INTEGER'),
('info', 'TEXT'),
('time', 'FLOAT'),
('msg', 'TEXT'),
('content_type', 'TEXT'),
('charset', 'TEXT'),
('method', 'TEXT'),
('response_size', 'INTEGER'),
('codef', 'INTEGER'),
('alias', 'TEXT'),
('has_qs', 'INTEGER')
]
_PRIMARY_KEY_COLUMNS = ('id',)
_INDEX_COLUMNS = ('alias',)
Expand Down

0 comments on commit 556aacf

Please sign in to comment.