MDL-27982 convert all signed to unsigned and prevent adding of new unsigned columns

Conflicts, amended to use .02 versions:

	lib/db/upgrade.php, version.php
This commit is contained in:
Petr Skoda
2012-03-06 12:03:59 +01:00
committed by Eloy Lafuente (stronk7)
parent 7e522ccbc8
commit e9e4a4a672
9 changed files with 13 additions and 30 deletions
-1
View File
@@ -43,7 +43,6 @@ class oracle_sql_generator extends sql_generator {
public $number_type = 'NUMBER'; // Proper type for NUMBER(x) in this DB
public $unsigned_allowed = false; // To define in the generator must handle unsigned information
public $default_for_char = ' '; // To define the default to set for NOT NULLs CHARs without default (null=do nothing)
// Using this whitespace here because Oracle doesn't distinguish empty and null! :-(