This commit is contained in:
TLINDEN
2012-02-10 20:22:14 +01:00
parent 0c293e4b81
commit 788902c69d
27 changed files with 5541 additions and 3900 deletions

8
note-1.0.7/mysql/sql Normal file
View File

@@ -0,0 +1,8 @@
CREATE TABLE note (
number int(10) DEFAULT '0' NOT NULL auto_increment,
note text,
date text,
PRIMARY KEY (number)
);
# sample grant statement:
#GRANT ALL PRIVILEGES ON tom_note TO tom@localhost IDENTIFIED BY 'password';