Skip to content
Snippets Groups Projects
Commit 2f8d5cf2 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

Fixed Type= tag in MySQL

parent 3a2310f5
No related branches found
No related tags found
No related merge requests found
/* Identifiers used for our statistics */
DROP TABLE IF EXISTS identifiers; DROP TABLE IF EXISTS identifiers;
CREATE TABLE identifiers ( CREATE TABLE identifiers (
`ID` SERIAL, `ID` SERIAL,
`Identifier` VARCHAR(255) NOT NULL `Identifier` VARCHAR(255) NOT NULL
) Type=MyISAM; ) Engine=MyISAM;
/* For queries */ /* For queries */
CREATE INDEX identifiers_idx1 ON identifiers (`Identifier`); CREATE INDEX identifiers_idx1 ON identifiers (`Identifier`);
/* Limit statistics */
DROP TABLE IF EXISTS stats; DROP TABLE IF EXISTS stats;
CREATE TABLE stats ( CREATE TABLE stats (
...@@ -31,7 +33,7 @@ CREATE TABLE stats ( ...@@ -31,7 +33,7 @@ CREATE TABLE stats (
`Total_Packets` BIGINT UNSIGNED NOT NULL, `Total_Packets` BIGINT UNSIGNED NOT NULL,
`Total_Overlimits` BIGINT UNSIGNED NOT NULL, `Total_Overlimits` BIGINT UNSIGNED NOT NULL,
`Total_Dropped` BIGINT UNSIGNED NOT NULL `Total_Dropped` BIGINT UNSIGNED NOT NULL
) Type=MyISAM; ) Engine=MyISAM;
/* For queries */ /* For queries */
CREATE INDEX stats_idx1 ON stats (`IdentifierID`); CREATE INDEX stats_idx1 ON stats (`IdentifierID`);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment