mirror of
https://github.com/nullishamy/ferri.git
synced 2025-06-28 09:04:18 +00:00
feat: basic Announce support
This commit is contained in:
parent
3719fae102
commit
2270324711
10 changed files with 178 additions and 4 deletions
|
@ -5,6 +5,8 @@ CREATE TABLE IF NOT EXISTS post
|
|||
user_id TEXT NOT NULL,
|
||||
content TEXT NOT NULL,
|
||||
created_at TEXT NOT NULL,
|
||||
boosted_post_id TEXT,
|
||||
|
||||
FOREIGN KEY(user_id) REFERENCES user(id)
|
||||
FOREIGN KEY(user_id) REFERENCES user(id),
|
||||
FOREIGN KEY(boosted_post_id) REFERENCES post(id)
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue