Skip to content

Commit dd83e7d

Browse files
committed
Attempt at #438
1 parent ad4d379 commit dd83e7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2592,7 +2592,7 @@ public function __construct(String $driver)
25922592
'datetime' => 'timestamp',
25932593
'datetime2' => 'timestamp',
25942594
'float' => 'double',
2595-
'image' => 'blob',
2595+
'image' => 'varbinary',
25962596
'int' => 'integer',
25972597
'money' => 'decimal',
25982598
'ntext' => 'longnvarchar',

src/Tqdev/PhpCrudApi/Database/TypeConverter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public function __construct(String $driver)
100100
'datetime' => 'timestamp',
101101
'datetime2' => 'timestamp',
102102
'float' => 'double',
103-
'image' => 'blob',
103+
'image' => 'varbinary',
104104
'int' => 'integer',
105105
'money' => 'decimal',
106106
'ntext' => 'longnvarchar',

0 commit comments

Comments
 (0)