mirror of
https://github.com/dg/dibi.git
synced 2025-08-06 14:16:39 +02:00
@@ -78,7 +78,7 @@ class DibiMssql2005Reflector extends DibiObject implements IDibiReflector
|
|||||||
'name' => $row['COLUMN_NAME'],
|
'name' => $row['COLUMN_NAME'],
|
||||||
'table' => $table,
|
'table' => $table,
|
||||||
'nativetype' => strtoupper($row['DATA_TYPE']),
|
'nativetype' => strtoupper($row['DATA_TYPE']),
|
||||||
'size' => $row['CHARACTER_MAXIMUM_LENGTH'],
|
'size' => $row['CHARACTER_MAXIMUM_LENGTH'] ? $row['CHARACTER_MAXIMUM_LENGTH'] : NULL,
|
||||||
'unsigned' => TRUE,
|
'unsigned' => TRUE,
|
||||||
'nullable' => $row['IS_NULLABLE'] === 'YES',
|
'nullable' => $row['IS_NULLABLE'] === 'YES',
|
||||||
'default' => $row['COLUMN_DEFAULT'],
|
'default' => $row['COLUMN_DEFAULT'],
|
||||||
|
Reference in New Issue
Block a user