| @@ 872-880 (lines=9) @@ | ||
| 869 | $limit = null; |
|
| 870 | } |
|
| 871 | break; |
|
| 872 | case 'char': |
|
| 873 | $type = static::PHINX_TYPE_CHAR; |
|
| 874 | if ($limit === 255) { |
|
| 875 | $limit = null; |
|
| 876 | } |
|
| 877 | if ($limit === 36) { |
|
| 878 | $type = static::PHINX_TYPE_UUID; |
|
| 879 | } |
|
| 880 | break; |
|
| 881 | case 'tinyint': |
|
| 882 | $type = static::PHINX_TYPE_INTEGER; |
|
| 883 | $limit = static::INT_TINY; |
|
| @@ 901-909 (lines=9) @@ | ||
| 898 | $limit = null; |
|
| 899 | } |
|
| 900 | break; |
|
| 901 | case 'char': |
|
| 902 | $type = static::PHINX_TYPE_CHAR; |
|
| 903 | if ($limit === 255) { |
|
| 904 | $limit = null; |
|
| 905 | } |
|
| 906 | if ($limit === 36) { |
|
| 907 | $type = static::PHINX_TYPE_UUID; |
|
| 908 | } |
|
| 909 | break; |
|
| 910 | case 'int': |
|
| 911 | $type = static::PHINX_TYPE_INTEGER; |
|
| 912 | if ($limit === 11) { |
|