smr/src/sql/insert_post.sql

20 lines
169 B
SQL

INSERT INTO posts (
post_text,
post_title,
authorid,
isanon,
hashedip,
unlisted,
hash,
post_time
) VALUES (
?,
?,
?,
?,
?,
?,
?,
strftime('%s','now')
);