smr/src/sql/insert_anon_author.sql

16 lines
170 B
SQL

INSERT OR IGNORE INTO authors (
id,
name,
salt,
passhash,
joindate,
biography
) VALUES (
-1,
'anonymous',
'',
'',
strftime('%s','1970-01-01 00:00:00'),
''
);