We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6524932 commit 9703c8eCopy full SHA for 9703c8e
tests/Integration/Database/EloquentUpdateTest.php
@@ -28,8 +28,8 @@ protected function afterRefreshingDatabase()
28
29
Schema::create('test_model3', function (Blueprint $table) {
30
$table->increments('id');
31
- $table->unsignedInteger('wallet_1');
32
- $table->unsignedInteger('wallet_2');
+ $table->integer('wallet_1');
+ $table->integer('wallet_2');
33
$table->softDeletes();
34
$table->timestamps();
35
});
0 commit comments