mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-02 21:41:19 +08:00
Fix #11945: Fix Schema Builder MySQL column definition order
This commit is contained in:
@ -4,6 +4,7 @@ Yii Framework 2 Change Log
|
||||
2.0.33 under development
|
||||
------------------------
|
||||
|
||||
- Bug #11945: Fix Schema Builder MySQL column definition order (simialbi)
|
||||
- Bug #16334: Serializer support `\JsonSerializable` (germanow)
|
||||
- Bug #17798: Avoid creating folder for stream log targets in `FileTarget` (wapmorgan)
|
||||
- Bug #17850: Update to `ReplaceArrayValue` config exception message (alex-code)
|
||||
|
||||
@ -61,10 +61,10 @@ class ColumnSchemaBuilder extends AbstractColumnSchemaBuilder
|
||||
$format = '{type}{length}{comment}{check}{append}{pos}';
|
||||
break;
|
||||
case self::CATEGORY_NUMERIC:
|
||||
$format = '{type}{length}{unsigned}{notnull}{unique}{default}{comment}{check}{append}{pos}';
|
||||
$format = '{type}{length}{unsigned}{notnull}{default}{unique}{comment}{append}{pos}{check}';
|
||||
break;
|
||||
default:
|
||||
$format = '{type}{length}{notnull}{unique}{default}{comment}{check}{append}{pos}';
|
||||
$format = '{type}{length}{notnull}{default}{unique}{comment}{append}{pos}{check}';
|
||||
}
|
||||
|
||||
return $this->buildCompleteString($format);
|
||||
|
||||
Reference in New Issue
Block a user