CREATE TABLE note (
  number int(10) DEFAULT '0' NOT NULL auto_increment,
  note text,
  date text,
  PRIMARY KEY (number)
);
