ioistired-pleroma-ebooks/schema.sql
io c22a493dff license compliance stuff and other changes
relicense to AGPLv3
comply with the MPL's file copyleft
some other changes in the direction of supporting GPT-2 which were hard to untangle from the rest of the changes (sorry)
2021-07-26 04:52:44 +00:00

9 lines
175 B
SQL

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
);