You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CREATE TABLE posts (
|
|
post_id TEXT PRIMARY KEY NOT NULL,
|
|
-- aka subject aka CW
|
|
summary TEXT,
|
|
content TEXT,
|
|
-- UTC Unix timestamp in seconds
|
|
published_at REAL NOT NULL
|
|
);
|
|
|
|
CREATE TABLE migrations (
|
|
migration_version INTEGER NOT NULL
|
|
);
|