blob: f5ed5001ebf9f52df5c9461b5c4fb5d6f69203d8 [file] [log] [blame]
CREATE TABLE posts (
userid text,
blog_title text,
posted_at timestamp,
entry_title text,
content text,
category int,
PRIMARY KEY (userid, blog_title, posted_at)
);