mysql中的一个建表出错的问题

CREATE TABLE filters (
  username     VARCHAR(64),
  unavailable  VARCHAR(1),
  sender       VARCHAR(255),
  resource     VARCHAR(32),
  subject      VARCHAR(255),
  body         TEXT,
  show_state   VARCHAR(8),
  type         VARCHAR(8),
  offline      VARCHAR(1),
  forward      VARCHAR(32),
  reply        TEXT,
  continue     VARCHAR(1),
  settype      VARCHAR(8)
);
ERROR 1064 (42000): You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'continue     VARCHAR(1),
  settype      VARCHAR(8)
)' at line 13
哪位大侠帮我看看.错在哪里!!谢了!