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 291b7d8 commit a968d01Copy full SHA for a968d01
database/migrations/create_larapay_transaction_table.php.stub
@@ -43,11 +43,10 @@ class CreateLarapayTransactionTable extends Migration
43
$table->jsonb('additional_data')->nullable()->default('{}');
44
$table->jsonb('sharing')->nullable()->default('{}');
45
}
46
- if (config('database.default') == 'mysql') {
47
- $table->jsonb('extra_params')->nullable();
48
- $table->jsonb('additional_data')->nullable();
49
- $table->jsonb('sharing')->nullable();
50
- }
+
+ $table->jsonb('extra_params')->nullable();
+ $table->jsonb('additional_data')->nullable();
+ $table->jsonb('sharing')->nullable();
51
52
$table->dateTime('paid_at')->nullable();
53
$table->timestamps();
0 commit comments