CREATE TABLE traffic (
  id int(10) unsigned not null auto_increment primary key,
  kunde varchar(16) not null,
  anbieter varchar(8) not null,
  year smallint(4) not null default 0,
  month tinyint(4) not null default 0,
  day tinyint(4) not null default 0,
  sent int(11) unsigned not null default 0,
  received int(11) unsigned not null default 0,
  local tinyint(4) not null default 0,
  maillist_id int(10) unsigned not null default 0
);
