mirror of
https://codeberg.org/scip/note.git
synced 2025-12-17 20:51:02 +01:00
9 lines
154 B
Plaintext
9 lines
154 B
Plaintext
CREATE TABLE note (
|
|
id int(10) DEFAULT '0' NOT NULL auto_increment,
|
|
number int(10),
|
|
firstline text,
|
|
note text,
|
|
date text,
|
|
PRIMARY KEY (id)
|
|
);
|