Created tables Respondants and Answers

This commit is contained in:
borean 2024-02-14 17:50:32 +01:00
parent 742a7f0bb1
commit 070bc933d5

View file

@ -0,0 +1,14 @@
// Users
CREATE TABLE Respondants (
name VARCHAR(255) PRIMARY KEY
);
// Answers
CREATE TABLE Answers (
answerOne INT check (answerOne BETWEEN 1 AND 10),
answerTwo INT (answerTwo BETWEEN 1 AND 10),
answerThree INT (answerThree BETWEEN 1 AND 10),
answerFour INT (answerFour BETWEEN 1 AND 10),
name VARCHAR(255),
FOREIGN KEY (name) REFERENCES Respondants(name)
);