4 lines
84 B
SQL
4 lines
84 B
SQL
CREATE TABLE IF NOT EXISTS notes (
|
|
id SERIAL PRIMARY KEY,
|
|
content TEXT
|
|
); |