Must be unsigned

This commit is contained in:
James Cole 2016-10-09 21:36:22 +02:00
parent 9bb8e182fa
commit 7e038afece

View File

@ -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);
}
);
}