mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
db2 removing extra )
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6159 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
cbf1b029a3
commit
939abab66c
1 changed files with 2 additions and 2 deletions
|
@ -223,8 +223,8 @@ class DboDb2 extends DboSource {
|
|||
$fields[strtolower(db2_result($result, 'COLUMN_NAME'))] = array(
|
||||
'type' => $this->column(strtolower(db2_result($result, 'TYPE_NAME'))),
|
||||
'null' => db2_result($result, 'NULLABLE'),
|
||||
'default' => db2_result($result, 'COLUMN_DEF')),
|
||||
'length' => db2_result($result, 'COLUMN_SIZE'))),
|
||||
'default' => db2_result($result, 'COLUMN_DEF'),
|
||||
'length' => db2_result($result, 'COLUMN_SIZE'),
|
||||
}
|
||||
$this->__cacheDescription($model->tablePrefix . $model->table, $fields);
|
||||
return $fields;
|
||||
|
|
Loading…
Reference in a new issue