DROP TABLE qtrack\g

CREATE TABLE qtrack (
  ip      text(63) NOT NULL,
  qwords  text(63) NOT NULL,
  qtime   int      NOT NULL,
  found   int      NOT NULL,
  ps      int      NOT NULL,
  np      int      NOT NULL,
  m       text(63) NOT NULL,
  wm      text(63) NOT NULL,
  o       int      NOT NULL,
  t       text(63) NOT NULL,
  cat     text(63) NOT NULL,
  ul      text(63) NOT NULL,
  wf      text(63) NOT NULL,
  g       text(63) NOT NULL,
  tmplt   text(63) NOT NULL
) \g
