mirror of
https://github.com/ioistired/pleroma-ebooks.git
synced 2024-11-20 02:14:52 +01:00
c22a493dff
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)
9 lines
175 B
SQL
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
|
|
);
|