summaryrefslogtreecommitdiff
path: root/pmacct/sbSetupCustom.mysql
diff options
context:
space:
mode:
authorDaniel Langesten <daniel.langest@gmail.com>2015-03-13 13:22:13 +0100
committerDaniel Langesten <daniel.langest@gmail.com>2015-03-13 13:22:13 +0100
commitbad8d2dcd2ee934ba88163af546e1997413a4556 (patch)
treecdd2037d32bcbc4dbc34c0d5988f41a0d835a054 /pmacct/sbSetupCustom.mysql
parent4b16059c4e7f3735c016d4f47c9f87371bf22d8e (diff)
renamed misspelled file
2
Diffstat (limited to 'pmacct/sbSetupCustom.mysql')
-rw-r--r--pmacct/sbSetupCustom.mysql16
1 files changed, 0 insertions, 16 deletions
diff --git a/pmacct/sbSetupCustom.mysql b/pmacct/sbSetupCustom.mysql
deleted file mode 100644
index dafc638..0000000
--- a/pmacct/sbSetupCustom.mysql
+++ /dev/null
@@ -1,16 +0,0 @@
-drop database if exists pmacct;
-create database pmacct;
-use pmacct;
-
-drop table is exists acct;
-create table acct (
- ip_src CHAR(15) NOT NULL,
- ip_dst CHAR(15) NOT NULL,
- src_port INT(2) UNSIGNED NOT NULL,
- dst_port INT(2) UNSIGNED NOT NULL,
- packets INT UNSIGNED NOT NULL,
- bytes BIGINT UNSIGNED NOT NULL,
- stamp_inserted DATETIME NOT NULL,
- stamp_updated DATETIME,
- PRIMARY KEY (ip_src, ip_dst, src_port, dst_port, stamp_inserted)
-);