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 213c220 commit b9f15a1Copy full SHA for b9f15a1
database/migrations/create_wallet_plus_tables.php.stub
@@ -22,7 +22,7 @@ class CreateWalletPlusTables extends Migration
22
23
Schema::create('wallets', function (Blueprint $table) {
24
$table->bigIncrements('id');
25
- $table->morphs('user');
+ $table->nullableMorphs('user');
26
$table->unsignedBigInteger('wallet_type_id')->nullable();
27
$table->bigInteger('raw_balance')->default(0);
28
$table->timestamps();
0 commit comments