Remove redundant check.

This commit is contained in:
mark_story 2011-11-07 23:16:45 -05:00
parent 946753acde
commit 2c91f119cb

View file

@ -250,7 +250,7 @@ class Sqlite extends DboSource {
if (in_array($col, array('text', 'integer', 'float', 'boolean', 'timestamp', 'date', 'datetime', 'time'))) {
return $col;
}
if (strpos($col, 'varchar') !== false || strpos($col, 'char') !== false) {
if (strpos($col, 'char') !== false) {
return 'string';
}
if (in_array($col, array('blob', 'clob'))) {