From 4bbaf115022536f54c7f1c39623429984acede8c Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Tue, 10 May 2022 13:50:41 -0400 Subject: [PATCH] Move username logs to private --- DatabaseSchema.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/DatabaseSchema.md b/DatabaseSchema.md index 68daf48..3e077ae 100644 --- a/DatabaseSchema.md +++ b/DatabaseSchema.md @@ -3,7 +3,6 @@ [vipUsers](#vipUsers) [sponsorTimes](#sponsorTimes) [userNames](#userNames) -[userNameLogs](#userNameLogs) [categoryVotes](#categoryVotes) [lockCategories](#lockCategories) [warnings](#warnings) @@ -66,16 +65,6 @@ | -- | :--: | | userNames_userID | userID | -### userNameLogs - -| Name | Type | | -| -- | :--: | -- | -| userID | TEXT | not null | -| newUserName | TEXT | not null | -| oldUserName | TEXT | not null | -| updatedByAdmin | BOOLEAN | not null | -| updatedAt | INTEGER | not null | - ### categoryVotes | Name | Type | | @@ -209,6 +198,7 @@ [sponsorTimes](#sponsorTimes) [config](#config) [tempVipLog](#tempVipLog) +[userNameLogs](#userNameLogs) ### vote @@ -279,4 +269,14 @@ | issuerUserID | TEXT | not null | | targetUserID | TEXT | not null | | enabled | BOOLEAN | not null | -| updatedAt | INTEGER | not null | \ No newline at end of file +| updatedAt | INTEGER | not null | + +### userNameLogs + +| Name | Type | | +| -- | :--: | -- | +| userID | TEXT | not null | +| newUserName | TEXT | not null | +| oldUserName | TEXT | not null | +| updatedByAdmin | BOOLEAN | not null | +| updatedAt | INTEGER | not null |