fix gitlab tests

This commit is contained in:
root
2026-06-09 02:32:58 -04:00
parent 20a0b6c4e5
commit 6def9993da
1489 changed files with 10449 additions and 11356 deletions
+8 -7
View File
@@ -2,6 +2,8 @@
namespace App\Models;
use App\Models\BaseModel;
class PayPalPayment extends BaseModel
{
protected $table = 'paypal_payments';
@@ -11,7 +13,6 @@ class PayPalPayment extends BaseModel
* In Laravel: enable timestamps but disable UPDATED_AT.
*/
public $timestamps = true;
const UPDATED_AT = null;
protected $fillable = [
@@ -37,10 +38,10 @@ class PayPalPayment extends BaseModel
protected $casts = [
'parent_school_id' => 'integer',
'amount' => 'decimal:2',
'paypal_fee' => 'decimal:2',
'net_amount' => 'decimal:2',
'synced' => 'boolean',
'sync_attempts' => 'integer',
'amount' => 'decimal:2',
'paypal_fee' => 'decimal:2',
'net_amount' => 'decimal:2',
'synced' => 'boolean',
'sync_attempts' => 'integer',
];
}
}