Skip to content

Commit

Permalink
Merge pull request #2648 from drgrice1/fix-past-answer-year-2038-bug
Browse files Browse the repository at this point in the history
Change the `timestamp` column in the past answer table to `BIGINT`.
  • Loading branch information
somiaj authored Dec 19, 2024
2 parents a66592f + a40c26a commit f36d1c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/WeBWorK/DB/Record/PastAnswer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ BEGIN {
set_id => { type => "VARCHAR(100) NOT NULL", key => 1 },
problem_id => { type => "INT NOT NULL", key => 1 },
source_file => { type => "TEXT" },
timestamp => { type => "INT" },
timestamp => { type => "BIGINT" },
scores => { type => "TINYTEXT" },
answer_string => { type => "VARCHAR(5012)" },
comment_string => { type => "VARCHAR(5012)" },
Expand Down

0 comments on commit f36d1c5

Please sign in to comment.