projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0549c24
)
MDL-15071 added missing breaks - credit goes to Andrei Bautu
author
skodak
<skodak>
Sun, 13 Jul 2008 20:27:51 +0000
(20:27 +0000)
committer
skodak
<skodak>
Sun, 13 Jul 2008 20:27:51 +0000
(20:27 +0000)
lib/dml/database_column_info.php
patch
|
blob
|
history
diff --git
a/lib/dml/database_column_info.php
b/lib/dml/database_column_info.php
index 6bc7b53af2b81b5ef662a12dee28e755f6cd53c0..b26e36b57bff6df3d857489d2067e3041264151c 100644
(file)
--- a/
lib/dml/database_column_info.php
+++ b/
lib/dml/database_column_info.php
@@
-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;
}
}
}