From a3ee4554db1bb16ac20e994804bf0c64da5a836a Mon Sep 17 00:00:00 2001 From: ReedThree Date: Mon, 4 Dec 2023 14:50:02 +0800 Subject: [PATCH] Backend: db: Add new table uploads to remove_data.sql. --- backend/db/remove_data.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/db/remove_data.sql b/backend/db/remove_data.sql index f3acc61..eb05a73 100644 --- a/backend/db/remove_data.sql +++ b/backend/db/remove_data.sql @@ -3,4 +3,5 @@ TRUNCATE TABLE students; TRUNCATE TABLE exams; TRUNCATE TABLE subjects; TRUNCATE TABLE semesters; -TRUNCATE TABLE grades; \ No newline at end of file +TRUNCATE TABLE grades; +TRUNCATE TABLE uploads; \ No newline at end of file