mirror of
https://codeberg.org/scip/note.git
synced 2025-12-16 20:21:04 +01:00
10 lines
243 B
Plaintext
10 lines
243 B
Plaintext
CREATE TABLE note (
|
|
number int(10) DEFAULT '0' NOT NULL auto_increment,
|
|
topic text,
|
|
note text,
|
|
date text,
|
|
PRIMARY KEY (number)
|
|
);
|
|
# sample grant statement:
|
|
#GRANT ALL PRIVILEGES ON tom_note TO tom@localhost IDENTIFIED BY 'password';
|