mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-13 16:00:13 +00:00
Must be unsigned
This commit is contained in:
@@ -28,7 +28,7 @@ class ExpandTransactionsTable extends Migration
|
|||||||
{
|
{
|
||||||
Schema::table(
|
Schema::table(
|
||||||
'transactions', function (Blueprint $table) {
|
'transactions', function (Blueprint $table) {
|
||||||
$table->smallInteger('identifier', false, false)->default(0);
|
$table->smallInteger('identifier', false, true)->default(0);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user