Added total number of records to page

This commit is contained in:
2025-05-31 03:38:30 +01:00
parent 5b4f7b5119
commit 943ae44e2b
3 changed files with 10 additions and 4 deletions

View File

@@ -68,10 +68,9 @@ CREATE TABLE `Users` (
CREATE TABLE Filters (
id INT NOT NULL AUTO_INCREMENT,
surveyId INT NOT NULL,
surveyId VARCHAR(20),
FilterQuestion INT NOT NULL,
FilterOption INT NOT NULL,
Text VARCHAR(128),
PRIMARY KEY (id),
FOREIGN KEY (surveyId) REFERENCES Surveys(id)
PRIMARY KEY (id)
);