Files
note/mysql-db/sql

7 lines
126 B
Plaintext
Raw Normal View History

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