Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add column hash_value to the tables results and report_host_details #1991

Merged
merged 1 commit into from
May 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/manage_pg.c
Original file line number Diff line number Diff line change
Expand Up @@ -2489,7 +2489,8 @@ create_tables ()
" owner integer REFERENCES users (id) ON DELETE RESTRICT,"
" date integer,"
" hostname text,"
" path text);");
" path text,"
" hash_value text);");

sql ("CREATE TABLE IF NOT EXISTS results_trash"
" (id SERIAL PRIMARY KEY,"
Expand Down Expand Up @@ -2619,7 +2620,8 @@ create_tables ()
" source_name text,"
" source_description text,"
" name text,"
" value text);");
" value text,"
" hash_value text);");

create_tables_nvt ("");

Expand Down