mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
Fix a bunch of SIGNED fileds that should be UNSIGNED. Credit goes to Petr.
Part of MDL-11038
This commit is contained in:
parent
66e294019e
commit
abd3025272
3 changed files with 64 additions and 64 deletions
|
@ -188,7 +188,7 @@ function upgrade_17_groups() {
|
|||
$table = new XMLDBTable('groupings');
|
||||
|
||||
/// Adding fields to table groupings
|
||||
$table->addFieldInfo('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null, null, null);
|
||||
$table->addFieldInfo('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null, null, null);
|
||||
$table->addFieldInfo('courseid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, null, '0');
|
||||
$table->addFieldInfo('name', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null, null, null);
|
||||
$table->addFieldInfo('description', XMLDB_TYPE_TEXT, 'small', null, null, null, null, null, null);
|
||||
|
@ -209,7 +209,7 @@ function upgrade_17_groups() {
|
|||
$table = new XMLDBTable('groupings_groups');
|
||||
|
||||
/// Adding fields to table groupings_groups
|
||||
$table->addFieldInfo('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null, null, null);
|
||||
$table->addFieldInfo('id', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, XMLDB_SEQUENCE, null, null, null);
|
||||
$table->addFieldInfo('groupingid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, null, '0');
|
||||
$table->addFieldInfo('groupid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, null, '0');
|
||||
$table->addFieldInfo('timeadded', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, null, '0');
|
||||
|
@ -264,7 +264,7 @@ function upgrade_18_groups() {
|
|||
/// Add columns/key 'courseid', exclusivegroups, maxgroupsize, timemodified.
|
||||
$table = new XMLDBTable('groupings');
|
||||
$field = new XMLDBField('courseid');
|
||||
$field->setAttributes(XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null, null, '0', 'id');
|
||||
$field->setAttributes(XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, null, '0', 'id');
|
||||
$result = $result && add_field($table, $field);
|
||||
|
||||
$table = new XMLDBTable('groupings');
|
||||
|
@ -287,7 +287,7 @@ function upgrade_18_groups() {
|
|||
/// Add columns/key 'courseid' into groups table
|
||||
$table = new XMLDBTable('groups');
|
||||
$field = new XMLDBField('courseid');
|
||||
$field->setAttributes(XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, null, null, '0', 'id');
|
||||
$field->setAttributes(XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, null, '0', 'id');
|
||||
$result = $result && add_field($table, $field);
|
||||
|
||||
$table = new XMLDBTable('groups');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue