DROP TABLE DrawItems;
CREATE TABLE DrawItems (
  id mediumint NOT NULL AUTO_INCREMENT,
  x mediumint NOT NULL,
  y mediumint NOT NULL,
  w mediumint NOT NULL,
  h mediumint NOT NULL,
  text varchar(100) NOT NULL,
  fore_color int NOT NULL,
  back_color int NOT NULL,
  line_color int NOT NULL,
  PRIMARY KEY (id)
);
