We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 724efe4 commit 4eb1abdCopy full SHA for 4eb1abd
server/schema/believability.sql
@@ -1,7 +1,7 @@
1
CREATE TABLE believability (
2
id SERIAL PRIMARY KEY, -- Unique identifier for each believability rating
3
theory_id INT NOT NULL, -- Foreign key referencing the associated theory
4
- user VARCHAR(100) NOT NULL, -- Name of the user giving the rating
+ submitter VARCHAR(100) NOT NULL, -- Name of the user giving the rating
5
believability_score INT CHECK (believability_score >= 1 AND believability_score <= 10), -- Believability score (1-10 scale)
6
FOREIGN KEY (theory_id) REFERENCES theories(theory_id) ON DELETE CASCADE
7
);
0 commit comments