mirror of
https://github.com/ioistired/pleroma-ebooks.git
synced 2024-11-20 02:14:52 +01:00
13 lines
241 B
SQL
13 lines
241 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
|
|
);
|
|
|
|
CREATE TABLE migrations (
|
|
migration_version INTEGER NOT NULL
|
|
);
|