Skip to content

Commit 37cfd68

Browse files
committed
Fix style
1 parent f06d6dc commit 37cfd68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/SchemaToDatabase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ public static function attributesFromColumnSchemas(array $columnSchemas)
334334
])
335335
&& $columnSchema->isPrimaryKey === true && $columnSchema->autoIncrement
336336
) {
337-
str_ireplace(['BIGINT', 'int8', 'bigserial', 'serial8'], 'nothing',$columnSchema->dbType, $count); # can be refactored if https://github.com/yiisoft/yii2/issues/20209 is fixed
337+
str_ireplace(['BIGINT', 'int8', 'bigserial', 'serial8'], 'nothing', $columnSchema->dbType, $count); # can be refactored if https://github.com/yiisoft/yii2/issues/20209 is fixed
338338
if ($count) {
339339
if ($columnSchema->unsigned) {
340340
$attribute->dbType = Schema::TYPE_UBIGPK;

0 commit comments

Comments
 (0)