Skip to content

Commit

Permalink
fix bill.category_id, not unsigned because of hardcoded reimb cat wit…
Browse files Browse the repository at this point in the history
…h id -11

Signed-off-by: Julien Veyssier <[email protected]>
  • Loading branch information
julien-nc committed Oct 6, 2024
1 parent 224fd52 commit 3d17d7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Migration/Version030000Date20240911230019.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
$table->addColumn('category_id', Types::BIGINT, [
'notnull' => false,
'default' => null,
'unsigned' => true,
'unsigned' => false,
]);
$schemaChanged = true;
}
Expand Down

0 comments on commit 3d17d7b

Please sign in to comment.