[LON-CAPA-cvs] cvs: loncom /interface loncoursedata.pm
matthew
lon-capa-cvs@mail.lon-capa.org
Tue, 30 Sep 2003 15:34:34 -0000
matthew Tue Sep 30 11:34:34 2003 EDT
Modified files:
/loncom/interface loncoursedata.pm
Log:
Remove 'awarded' column from fulldump_response_table.
Index: loncom/interface/loncoursedata.pm
diff -u loncom/interface/loncoursedata.pm:1.92 loncom/interface/loncoursedata.pm:1.93
--- loncom/interface/loncoursedata.pm:1.92 Tue Sep 30 08:09:48 2003
+++ loncom/interface/loncoursedata.pm Tue Sep 30 11:34:34 2003
@@ -1,6 +1,6 @@
# The LearningOnline Network with CAPA
#
-# $Id: loncoursedata.pm,v 1.92 2003/09/30 12:09:48 matthew Exp $
+# $Id: loncoursedata.pm,v 1.93 2003/09/30 15:34:34 matthew Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -460,7 +460,7 @@
associated with a particular response id which is stored when a student
attempts a problem. The following are the columns of the table, in order:
'symb_id','part_id','response_id','student_id','transaction','tries',
-'awarddetail', 'awarded','response_specific' (data particular to the response
+'awarddetail', 'response_specific' (data particular to the response
type), 'response_specific_value', and 'submission (the text of the students
submission). The primary key is based on the first five columns listed above.
@@ -716,8 +716,6 @@
restrictions => 'NOT NULL' },
{ name => 'awarddetail',
type => 'TINYTEXT' },
- { name => 'awarded',
- type => 'TINYTEXT' },
# { name => 'message',
# type => 'CHAR' },
{ name => 'response_specific',
@@ -1189,7 +1187,6 @@
if (defined($resp_id) &&
$field =~ /^(tries|
awarddetail|
- awarded|
submission|
submissiongrading|
molecule)$/x) {
@@ -1256,7 +1253,6 @@
$transaction,
$data->{'tries'},
$data->{'awarddetail'},
- $data->{'awarded'},
$data->{'response_specific'},
$data->{'response_specific_value'},
$data->{'submission'})."'),";