You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
311 B
11 lines
311 B
DROP TABLE `flowcache`;
|
|
|
|
CREATE TABLE `flowcache` (
|
|
`last_time` INT(10) UNSIGNED NOT NULL,
|
|
`abon_id` INT(11) DEFAULT NULL UNIQUE,
|
|
`octets` INT(10) UNSIGNED NOT NULL,
|
|
`packets` INT(10) UNSIGNED NOT NULL,
|
|
KEY `flowcache_abon_id_91e1085d` (`abon_id`)
|
|
)
|
|
ENGINE = MEMORY
|
|
DEFAULT CHARSET = utf8;
|