Начал делать API для постов

This commit is contained in:
2023-09-06 05:38:18 +03:00
parent 983a5d0353
commit 9a4658f3ea
7 changed files with 71 additions and 1 deletions

View File

@@ -69,4 +69,7 @@ CREATE TABLE invites (
author_id INT UNSIGNED NULL COMMENT 'ID of user, who created invite',
uses_last SMALLINT UNSIGNED NOT NULL COMMENT 'Remaining uses of invite'
);
CREATE TABLE approved_tags (
value VARCHAR(255) NOT NULL COMMENT 'The tag itself'
);
```