Skip to content

Commit

Permalink
Migration autoincrement param remove from interger method
Browse files Browse the repository at this point in the history
  • Loading branch information
digitaldreams committed Feb 4, 2018
1 parent 2f08658 commit 93dd273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lara-crud/Crud/MigrationCrud.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private function rules()
} elseif (in_array($dataType, ['smallint', 'int', 'mediumint', 'bigint', 'float',
'double'])) {
if (!empty($column->length())) {
$params = $column->length();
$params = false;
}
} elseif ($dataType == 'decimal') {

Expand Down

0 comments on commit 93dd273

Please sign in to comment.