Skip to content

Commit b93e06c

Browse files
committed
fix: default generate id as big integer
1 parent 7c0aa12 commit b93e06c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Common/CommandData.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ private function addPrimaryKey()
195195
} else {
196196
$primaryKey->name = 'id';
197197
}
198-
$primaryKey->parseDBType('increments');
198+
$primaryKey->parseDBType('id');
199199
$primaryKey->parseOptions('s,f,p,if,ii');
200200

201201
$this->fields[] = $primaryKey;

0 commit comments

Comments
 (0)