This commit is contained in:
deadvey 2025-03-29 21:08:46 +00:00
parent f9a9166bb6
commit 9d2e163624
4 changed files with 15 additions and 12 deletions

Binary file not shown.

Binary file not shown.

View File

@ -11,3 +11,6 @@ USE glogger;
CREATE TABLE users ( userID INT PRIMARY KEY AUTO_INCREMENT NOT NULL, username VARCHAR(255) );
CREATE TABLE posts ( postID INT PRIMARY KEY AUTO_INCREMENT NOT NULL, userID INT, FOREIGN KEY(userID) REFERENCES users(userID), title VARCHAR(255), content TEXT, pubDate VARCHAR(255), editDate VARCHAR(255) );
```
# TO DO
* Add RSS and/or ATOM support
* Make it more reliable?