Files
note/note-1.0.7/mysql/sql
TLINDEN 788902c69d -
2012-02-10 20:22:14 +01:00

9 lines
229 B
Plaintext

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';