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
@@ -53,7 +53,6 @@ class sqlite_sql_generator extends sql_generator {
public $sequence_only = true; //To avoid to output the rest of the field specs, leaving only the name and the sequence_name publiciable
public $sequence_extra_code = false; //Does the generator need to add extra code to generate the sequence fields
public $sequence_name = 'INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL'; //Particular name for inline sequences in this generator
public $unsigned_allowed = false; // To define in the generator must handle unsigned information
public $enum_inline_code = true; //Does the generator need to add inline code in the column definition
public $enum_extra_code = false; //Does the generator need to add extra code to generate code for the enums in the table