Files
note/sql

9 lines
154 B
Plaintext
Raw Normal View History

2012-02-10 19:58:52 +01:00
CREATE TABLE note (
id int(10) DEFAULT '0' NOT NULL auto_increment,
number int(10),
firstline text,
note text,
date text,
PRIMARY KEY (id)
);