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 a968d01 commit 680f555Copy full SHA for 680f555
database/migrations/create_larapay_transaction_table.php.stub
@@ -42,12 +42,12 @@ class CreateLarapayTransactionTable extends Migration
42
$table->jsonb('extra_params')->nullable()->default('{}');
43
$table->jsonb('additional_data')->nullable()->default('{}');
44
$table->jsonb('sharing')->nullable()->default('{}');
45
+ } else {
46
+ $table->jsonb('extra_params')->nullable();
47
+ $table->jsonb('additional_data')->nullable();
48
+ $table->jsonb('sharing')->nullable();
49
}
50
- $table->jsonb('extra_params')->nullable();
- $table->jsonb('additional_data')->nullable();
- $table->jsonb('sharing')->nullable();
-
51
$table->dateTime('paid_at')->nullable();
52
$table->timestamps();
53
$table->softDeletes();
0 commit comments