first commit

This commit is contained in:
TLINDEN
2012-02-10 19:58:52 +01:00
commit b4432f2922
5 changed files with 535 additions and 0 deletions

8
sql Normal file
View File

@@ -0,0 +1,8 @@
CREATE TABLE note (
id int(10) DEFAULT '0' NOT NULL auto_increment,
number int(10),
firstline text,
note text,
date text,
PRIMARY KEY (id)
);