We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99f9b31 commit da0557eCopy full SHA for da0557e
1 file changed
database/fuzzili.sql
@@ -11,7 +11,7 @@ CREATE TABLE fuzzer (
11
12
CREATE TABLE execution_type (
13
id SERIAL PRIMARY KEY,
14
- title VARCHAR(32) NOT NULL
+ title VARCHAR(32) NOT NULL UNIQUE
15
);
16
17
--preseed with AI Mut, Delta, OG Testcase type
@@ -41,9 +41,10 @@ FOREIGN KEY (program_base64)
41
REFERENCES fuzzer(program_base64);
42
43
INSERT INTO execution_type (title) VALUES
44
- ('AI Mutation'),
45
- ('Delta Analysis'),
46
- ('Testcase');
+ ('ai_mutation'),
+ ('delta_analysis'),
+ ('directed_testcases'),
47
+ ('generalistic_testcases');
48
49
CREATE INDEX idx_execution_program ON execution(program_base64);
50
CREATE INDEX idx_execution_type ON execution(execution_type_id);
0 commit comments