smr/src/sql/insert_anon_author.sql

20 lines
281 B
SQL

/*
Create a fake "anonymous" user, so
that no one runs into touble being able to paste under this account.
*/
INSERT OR IGNORE INTO authors (
id,
name,
salt,
passhash,
joindate,
biography
) VALUES (
-1,
'anonymous',
'',
'',
strftime('%s','1970-01-01 00:00:00'),
''
);