2012-02-10 20:03:20 +01:00
|
|
|
CREATE TABLE note (
|
2012-02-10 20:05:33 +01:00
|
|
|
number int(10) DEFAULT '0' NOT NULL auto_increment,
|
2012-02-10 20:03:20 +01:00
|
|
|
note text,
|
|
|
|
|
date text,
|
2012-02-10 20:05:33 +01:00
|
|
|
PRIMARY KEY (number)
|
2012-02-10 20:03:20 +01:00
|
|
|
);
|