Add friendships and friend_requests database tables

This commit is contained in:
2024-09-28 20:28:00 -04:00
parent bf89838297
commit a83fb9dea5
3 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,7 @@
DROP INDEX friendships_friend_2_idx;
DROP INDEX friendships_friend_1_idx;
DROP TABLE friendships;
DROP INDEX incoming_friend_requests_idx;
DROP INDEX outgoing_friend_requests_idx;
DROP TABLE friend_requests;