Skip to content

Commit 9703c8e

Browse files
committed
fix tests
1 parent 6524932 commit 9703c8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Integration/Database/EloquentUpdateTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ protected function afterRefreshingDatabase()
2828

2929
Schema::create('test_model3', function (Blueprint $table) {
3030
$table->increments('id');
31-
$table->unsignedInteger('wallet_1');
32-
$table->unsignedInteger('wallet_2');
31+
$table->integer('wallet_1');
32+
$table->integer('wallet_2');
3333
$table->softDeletes();
3434
$table->timestamps();
3535
});

0 commit comments

Comments
 (0)