http://3oamv2de6ooacy72hv3ulym3i3vvlprlkqas7hhzo4pu5nyxnji37zad.onion/blogs/adding-comments
The SQL looked something like this: CREATE TABLE IF NOT EXISTS comments (
id TEXT NOT NULL, -- random UUID
post TEXT NOT NULL, -- URL for the page
name TEXT NOT NULL, -- Optional name, defaulted to anonymous
email TEXT, -- optional email
website TEXT, -- optional website for the commenter
comment TEXT NOT NULL, -- the comment
commenter TEXT NOT NULL, -- random UUID
reply_to TEXT -- something for the future threaded replies
) You might have noticed that I did not tell SQLite to set the...