Some bug fixes

The $tomod variable wasn't set, and the ColumnDef constructor
didn't work without any args. These are fixed.
This commit is contained in:
Evan Prodromou 2009-10-01 15:43:08 -04:00
parent d103522ff3
commit 544c58d263
1 changed files with 5 additions and 2 deletions

View File

@ -284,6 +284,8 @@ class Schema
$same = array_intersect($new, $cur);
$tomod = array();
foreach ($same as $m) {
$curCol = $this->_byName($td->columns, $m);
$newCol = $this->_byName($columns, $m);
@ -386,8 +388,9 @@ class ColumnDef
public $default;
public $extra;
function __construct($name, $type, $size=null, $nullable=true,
$key=null, $default=null, $extra=null) {
function __construct($name=null, $type=null, $size=null,
$nullable=true, $key=null, $default=null,
$extra=null) {
$this->name = strtolower($name);
$this->type = strtolower($type);
$this->size = $size+0;