mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
corrected spelling of "Potatatoes" to "Potatoes" on some table comments
This commit is contained in:
parent
b4f4f09ca8
commit
b84defd2ad
@ -1,100 +1,116 @@
|
||||
#
|
||||
# Table structure for table `hotpot`
|
||||
#
|
||||
|
||||
CREATE TABLE prefix_hotpot (
|
||||
id SERIAL PRIMARY KEY,
|
||||
course INT4 NOT NULL default '0',
|
||||
name VARCHAR(255) NOT NULL default '',
|
||||
summary TEXT,
|
||||
timeopen INT4 NOT NULL default '0',
|
||||
timeclose INT4 NOT NULL default '0',
|
||||
location INT2 NOT NULL default '0',
|
||||
reference VARCHAR(255) NOT NULL default '',
|
||||
outputformat INT2 NOT NULL default '1',
|
||||
navigation INT2 NOT NULL default '1',
|
||||
studentfeedback INT2 NOT NULL default '0',
|
||||
studentfeedbackurl VARCHAR(255) NOT NULL default '',
|
||||
forceplugins INT2 NOT NULL default '0',
|
||||
shownextquiz INT2 NOT NULL default '0',
|
||||
review INT2 NOT NULL default '0',
|
||||
grade INT4 NOT NULL default '0',
|
||||
grademethod INT2 NOT NULL default '1',
|
||||
attempts INT2 NOT NULL default '0',
|
||||
password VARCHAR(255) NOT NULL default '',
|
||||
subnet VARCHAR(255) NOT NULL default '',
|
||||
microreporting INT2 NOT NULL default '0',
|
||||
timecreated INT4 NOT NULL default '0',
|
||||
timemodified INT4 NOT NULL default '0'
|
||||
id SERIAL PRIMARY KEY,
|
||||
course INT4 NOT NULL default '0',
|
||||
name VARCHAR(255) NOT NULL default '',
|
||||
summary TEXT,
|
||||
timeopen INT4 NOT NULL default '0',
|
||||
timeclose INT4 NOT NULL default '0',
|
||||
location INT2 NOT NULL default '0',
|
||||
reference VARCHAR(255) NOT NULL default '',
|
||||
outputformat INT2 NOT NULL default '1',
|
||||
navigation INT2 NOT NULL default '1',
|
||||
studentfeedback INT2 NOT NULL default '0',
|
||||
studentfeedbackurl VARCHAR(255) NOT NULL default '',
|
||||
forceplugins INT2 NOT NULL default '0',
|
||||
shownextquiz INT2 NOT NULL default '0',
|
||||
review INT2 NOT NULL default '0',
|
||||
grade INT4 NOT NULL default '0',
|
||||
grademethod INT2 NOT NULL default '1',
|
||||
attempts INT2 NOT NULL default '0',
|
||||
password VARCHAR(255) NOT NULL default '',
|
||||
subnet VARCHAR(255) NOT NULL default '',
|
||||
microreporting INT2 NOT NULL default '0',
|
||||
timecreated INT4 NOT NULL default '0',
|
||||
timemodified INT4 NOT NULL default '0'
|
||||
);
|
||||
COMMENT ON TABLE prefix_hotpot IS 'details about Hot Potatoes quizzes';
|
||||
|
||||
#
|
||||
# Table structure for table `hotpot_attempts`
|
||||
#
|
||||
|
||||
CREATE TABLE prefix_hotpot_attempts (
|
||||
id SERIAL PRIMARY KEY,
|
||||
hotpot INT4 NOT NULL default '0',
|
||||
userid INT4 NOT NULL default '0',
|
||||
starttime INT4,
|
||||
endtime INT4,
|
||||
score INT2,
|
||||
penalties INT2,
|
||||
attempt INT2 NOT NULL default '0',
|
||||
timestart INT4 NOT NULL default '0',
|
||||
timefinish INT4 NOT NULL default '0',
|
||||
status INT2 NOT NULL default '1',
|
||||
clickreportid INT4 default NULL
|
||||
id SERIAL PRIMARY KEY,
|
||||
hotpot INT4 NOT NULL default '0',
|
||||
userid INT4 NOT NULL default '0',
|
||||
starttime INT4,
|
||||
endtime INT4,
|
||||
score INT2,
|
||||
penalties INT2,
|
||||
attempt INT2 NOT NULL default '0',
|
||||
timestart INT4 NOT NULL default '0',
|
||||
timefinish INT4 NOT NULL default '0',
|
||||
status INT2 NOT NULL default '1',
|
||||
clickreportid INT4 default NULL
|
||||
);
|
||||
COMMENT ON TABLE prefix_hotpot IS 'details about Hot Potatoes quiz attempts';
|
||||
|
||||
CREATE INDEX prefix_hotpot_attempts_hotpot_idx ON prefix_hotpot_attempts (hotpot);
|
||||
CREATE INDEX prefix_hotpot_attempts_userid_idx ON prefix_hotpot_attempts (userid);
|
||||
|
||||
#
|
||||
# Table structure for table `prefix_hotpot_details`
|
||||
#
|
||||
|
||||
CREATE TABLE prefix_hotpot_details (
|
||||
id SERIAL PRIMARY KEY,
|
||||
attempt INT4 NOT NULL default '0',
|
||||
details TEXT
|
||||
id SERIAL PRIMARY KEY,
|
||||
attempt INT4 NOT NULL default '0',
|
||||
details TEXT
|
||||
);
|
||||
COMMENT ON TABLE prefix_hotpot_details IS 'raw details (as XML) of Hot Potatoes quiz attempts';
|
||||
|
||||
CREATE INDEX prefix_hotpot_details_attempt_idx ON prefix_hotpot_details (attempt);
|
||||
|
||||
#
|
||||
# Table structure for table `hotpot_questions`
|
||||
#
|
||||
|
||||
CREATE TABLE prefix_hotpot_questions (
|
||||
id SERIAL PRIMARY KEY,
|
||||
name TEXT,
|
||||
type INT2 NOT NULL default '0',
|
||||
text INT4 NULL,
|
||||
hotpot INT4 NOT NULL default '0'
|
||||
id SERIAL PRIMARY KEY,
|
||||
name TEXT,
|
||||
type INT2 NOT NULL default '0',
|
||||
text INT4 NULL,
|
||||
hotpot INT4 NOT NULL default '0'
|
||||
);
|
||||
COMMENT ON TABLE prefix_hotpot_questions IS 'details about questions in Hot Potatatoes quiz attempts';
|
||||
COMMENT ON TABLE prefix_hotpot_questions IS 'details about questions in Hot Potatoes quiz attempts';
|
||||
|
||||
CREATE INDEX prefix_hotpot_questions_hotpot_idx ON prefix_hotpot_questions (hotpot);
|
||||
CREATE INDEX prefix_hotpot_questions_name_idx ON prefix_hotpot_questions (SUBSTR(name,20));
|
||||
|
||||
#
|
||||
# Table structure for table `hotpot_responses`
|
||||
#
|
||||
|
||||
CREATE TABLE prefix_hotpot_responses (
|
||||
id SERIAL PRIMARY KEY,
|
||||
attempt INT4 NOT NULL default '0',
|
||||
question INT4 NOT NULL default '0',
|
||||
score INT2,
|
||||
weighting INT2,
|
||||
correct VARCHAR(255),
|
||||
wrong VARCHAR(255),
|
||||
ignored VARCHAR(255),
|
||||
hints INT2,
|
||||
clues INT2,
|
||||
checks INT2
|
||||
id SERIAL PRIMARY KEY,
|
||||
attempt INT4 NOT NULL default '0',
|
||||
question INT4 NOT NULL default '0',
|
||||
score INT2,
|
||||
weighting INT2,
|
||||
correct VARCHAR(255),
|
||||
wrong VARCHAR(255),
|
||||
ignored VARCHAR(255),
|
||||
hints INT2,
|
||||
clues INT2,
|
||||
checks INT2
|
||||
);
|
||||
COMMENT ON TABLE prefix_hotpot_responses IS 'details about responses in Hot Potatatoes quiz attempts';
|
||||
COMMENT ON TABLE prefix_hotpot_responses IS 'details about responses in Hot Potatoes quiz attempts';
|
||||
|
||||
CREATE INDEX prefix_hotpot_responses_attempt_idx ON prefix_hotpot_responses (attempt);
|
||||
CREATE INDEX prefix_hotpot_responses_question_idx ON prefix_hotpot_responses (question);
|
||||
|
||||
#
|
||||
# Table structure for table `hotpot_strings`
|
||||
#
|
||||
|
||||
CREATE TABLE prefix_hotpot_strings (
|
||||
id SERIAL PRIMARY KEY,
|
||||
id SERIAL PRIMARY KEY,
|
||||
string TEXT NOT NULL
|
||||
);
|
||||
COMMENT ON TABLE prefix_hotpot_strings IS 'strings used in Hot Potatatoes questions and responses';
|
||||
COMMENT ON TABLE prefix_hotpot_strings IS 'strings used in Hot Potatoes questions and responses';
|
||||
|
||||
CREATE INDEX prefix_hotpot_strings_string_idx ON prefix_hotpot_strings (SUBSTR(string,20));
|
||||
|
Loading…
x
Reference in New Issue
Block a user