mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Must be unsigned
This commit is contained in:
parent
9bb8e182fa
commit
7e038afece
@ -28,7 +28,7 @@ class ExpandTransactionsTable extends Migration
|
||||
{
|
||||
Schema::table(
|
||||
'transactions', function (Blueprint $table) {
|
||||
$table->smallInteger('identifier', false, false)->default(0);
|
||||
$table->smallInteger('identifier', false, true)->default(0);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user