MDL-15071 added missing breaks - credit goes to Andrei Bautu

This commit is contained in:
skodak 2008-07-13 20:27:51 +00:00
parent 0549c245e1
commit 6321dbf098

View File

@ -119,9 +119,11 @@ class database_column_info {
$this->has_default = false;
$this->default_value = null;
$this->unique = true;
break;
case 'C':
$this->auto_increment = false;
$this->binary = false;
break;
}
}
}