| @@ 861-869 (lines=9) @@ | ||
| 858 | $limit = null; |
|
| 859 | } |
|
| 860 | break; |
|
| 861 | case 'char': |
|
| 862 | $type = static::PHINX_TYPE_CHAR; |
|
| 863 | if ($limit === 255) { |
|
| 864 | $limit = null; |
|
| 865 | } |
|
| 866 | if ($limit === 36) { |
|
| 867 | $type = static::PHINX_TYPE_UUID; |
|
| 868 | } |
|
| 869 | break; |
|
| 870 | case 'tinyint': |
|
| 871 | $type = static::PHINX_TYPE_INTEGER; |
|
| 872 | $limit = static::INT_TINY; |
|
| @@ 910-918 (lines=9) @@ | ||
| 907 | $limit = null; |
|
| 908 | } |
|
| 909 | break; |
|
| 910 | case 'char': |
|
| 911 | $type = static::PHINX_TYPE_CHAR; |
|
| 912 | if ($limit === 255) { |
|
| 913 | $limit = null; |
|
| 914 | } |
|
| 915 | if ($limit === 36) { |
|
| 916 | $type = static::PHINX_TYPE_UUID; |
|
| 917 | } |
|
| 918 | break; |
|
| 919 | case 'int': |
|
| 920 | $type = static::PHINX_TYPE_INTEGER; |
|
| 921 | if ($limit === 11) { |
|