Skip to content

Commit f36d1c5

Browse files
authored
Merge pull request #2648 from drgrice1/fix-past-answer-year-2038-bug
Change the `timestamp` column in the past answer table to `BIGINT`.
2 parents a66592f + a40c26a commit f36d1c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/WeBWorK/DB/Record/PastAnswer.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ BEGIN {
3232
set_id => { type => "VARCHAR(100) NOT NULL", key => 1 },
3333
problem_id => { type => "INT NOT NULL", key => 1 },
3434
source_file => { type => "TEXT" },
35-
timestamp => { type => "INT" },
35+
timestamp => { type => "BIGINT" },
3636
scores => { type => "TINYTEXT" },
3737
answer_string => { type => "VARCHAR(5012)" },
3838
comment_string => { type => "VARCHAR(5012)" },

0 commit comments

Comments
 (0)