Signature generation and saving to database done

This commit is contained in:
Latif Khalifa
2013-10-13 04:19:19 +02:00
parent da311a7e43
commit 2f68544cf1
4 changed files with 151 additions and 2 deletions

View File

@@ -52,5 +52,12 @@ create table reports(
crash_reason varchar(128),
crash_address varchar(16),
crash_thread integer,
raw_stacktrace longtext
raw_stacktrace longtext,
signature_id integer
);
create table signature(
id integer not null auto_increment primary key,
hash varchar(32) not null unique,
signature text
);