|
|
|
|
Snort Forums Archive
Archive Home » Snort Development » MySQL schema
Please note that the categories listed below represent an archived version of our forums pages. To view the current version and be able to post and reply to threads, please register and login here to go to the full forums pages.
[ Notice: Full Version of This Topic ]
MySQL schema
Posted by avalon on September 07, 2005 06:26:12
CREATE TABLE sig_class ( sig_class_id INT UNSIGNED NOT NULL AUTO_INCREMENT,
sig_class_name VARCHAR(60) NOT NULL,
PRIMARY KEY (sig_class_id),
INDEX (sig_class_id),
INDEX (sig_class_name));
Think we don't need "INDEX (sig_class_id)"... |
|
Posted by avalon on September 12, 2005 04:03:53
Is my post stupid? |
|
Posted by Joel_Esler on September 12, 2005 08:31:00
No, SOURCEfire didn't write the original DB creation script, and we haven't had a chance to go through all
the contributed database code for details like that. Thanks though.
Joel Esler
SOURCEfire |
|
|
|
|
|