mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-02 03:59:29 +00:00
Mark storage should use unsigned ints
This commit is contained in:
@@ -69,7 +69,7 @@ tableCreate.set('testTemplate', `
|
|||||||
testTemplateId varchar(36) NOT NULL PRIMARY KEY,
|
testTemplateId varchar(36) NOT NULL PRIMARY KEY,
|
||||||
accountId varchar(36) NOT NULL ,
|
accountId varchar(36) NOT NULL ,
|
||||||
name varchar(100) NOT NULL ,
|
name varchar(100) NOT NULL ,
|
||||||
maxMark int NOT NULL,
|
maxMark int UNSIGNED NOT NULL,
|
||||||
gradeBoundaries longtext
|
gradeBoundaries longtext
|
||||||
);
|
);
|
||||||
`);
|
`);
|
||||||
@@ -116,7 +116,7 @@ tableCreate.set('testResult', `
|
|||||||
studentId varchar(36) NOT NULL ,
|
studentId varchar(36) NOT NULL ,
|
||||||
testId varchar(36) NOT NULL ,
|
testId varchar(36) NOT NULL ,
|
||||||
accountId varchar(36) NOT NULL ,
|
accountId varchar(36) NOT NULL ,
|
||||||
mark int NOT NULL ,
|
mark int UNSIGNED NOT NULL ,
|
||||||
time datetime NOT NULL ,
|
time datetime NOT NULL ,
|
||||||
CONSTRAINT Unq_testResult UNIQUE ( studentId, testId )
|
CONSTRAINT Unq_testResult UNIQUE ( studentId, testId )
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user