Completed
Push — master ( a8c749...61a9ae )
by Ivan
12:12
created
src/schema/TableColumn.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
             $this->btype = 'enum';
125 125
         } elseif (strpos($type, 'json') !== false) {
126 126
             $this->btype = 'json';
127
-        }  elseif (strpos($type, 'text') !== false || strpos($type, 'char') !== false) {
127
+        } elseif (strpos($type, 'text') !== false || strpos($type, 'char') !== false) {
128 128
             $this->btype = 'text';
129 129
         } elseif (strpos($type, 'int') !== false || strpos($type, 'bit') !== false) {
130 130
             $this->btype = 'int';
Please login to merge, or discard this patch.